2009-04-30 12:55:53 -04:00
|
|
|
module ActionDispatch
|
|
|
|
module Assertions
|
2009-11-09 22:37:37 -05:00
|
|
|
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'
|
|
|
|
autoload :TagAssertions, 'action_dispatch/testing/assertions/tag'
|
|
|
|
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2011-05-23 02:13:44 -04:00
|
|
|
include DomAssertions
|
|
|
|
include ResponseAssertions
|
|
|
|
include RoutingAssertions
|
|
|
|
include SelectorAssertions
|
|
|
|
include TagAssertions
|
2009-04-30 12:55:53 -04:00
|
|
|
end
|
|
|
|
end
|
2011-05-23 02:13:44 -04:00
|
|
|
|