blob: 8e6b93ba67e8e580304c114f6c90deffea61c938 (
plain) (
tree)
|
|
module ActionDispatch
module Assertions
autoload :DomAssertions, 'action_dispatch/testing/assertions/dom'
autoload :ResponseAssertions, 'action_dispatch/testing/assertions/response'
autoload :RoutingAssertions, 'action_dispatch/testing/assertions/routing'
autoload :SelectorAssertions, 'action_dispatch/testing/assertions/selector'
extend ActiveSupport::Concern
include DomAssertions
include ResponseAssertions
include RoutingAssertions
include SelectorAssertions
end
end
|