blob: 96f08f23550d868a53ae0778f57ab2ba1ed53035 (
plain) (
tree)
|
|
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
|