mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
9 lines
236 B
Ruby
9 lines
236 B
Ruby
module ActionDispatch
|
|
module Assertions
|
|
%w(response selector tag dom routing model).each do |kind|
|
|
require "action_dispatch/testing/assertions/#{kind}"
|
|
include const_get("#{kind.camelize}Assertions")
|
|
end
|
|
end
|
|
end
|