~ubuntu-branches/ubuntu/raring/ruby-actionpack-3.2/raring

« back to all changes in this revision

Viewing changes to lib/action_dispatch/testing/assertions.rb

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý
  • Date: 2012-04-25 09:14:01 UTC
  • Revision ID: package-import@ubuntu.com-20120425091401-3nkf83btcemhjquo
Tags: upstream-3.2.3
Import upstream version 3.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
module ActionDispatch
 
2
  module Assertions
 
3
    autoload :DomAssertions, 'action_dispatch/testing/assertions/dom'
 
4
    autoload :ResponseAssertions, 'action_dispatch/testing/assertions/response'
 
5
    autoload :RoutingAssertions, 'action_dispatch/testing/assertions/routing'
 
6
    autoload :SelectorAssertions, 'action_dispatch/testing/assertions/selector'
 
7
    autoload :TagAssertions, 'action_dispatch/testing/assertions/tag'
 
8
 
 
9
    extend ActiveSupport::Concern
 
10
 
 
11
    include DomAssertions
 
12
    include ResponseAssertions
 
13
    include RoutingAssertions
 
14
    include SelectorAssertions
 
15
    include TagAssertions
 
16
  end
 
17
end
 
18