aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/testing/assertions.rb
blob: 96f08f23550d868a53ae0778f57ab2ba1ed53035 (plain) (blame)
1
2
3
4
5
6
7
8
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