diff options
author | Timm <kaspth@gmail.com> | 2013-08-07 16:42:17 +0200 |
---|---|---|
committer | Timm <kaspth@gmail.com> | 2014-06-16 21:04:02 +0200 |
commit | 748f28157bfd9e26fe213bed4aed6c2c578921ba (patch) | |
tree | 7be518bf2827c594ff464b52436763c8116032bf /actionpack/lib | |
parent | 7b2e753c1ce0be85d942dfee817af27b02a70c3b (diff) | |
download | rails-748f28157bfd9e26fe213bed4aed6c2c578921ba.tar.gz rails-748f28157bfd9e26fe213bed4aed6c2c578921ba.tar.bz2 rails-748f28157bfd9e26fe213bed4aed6c2c578921ba.zip |
Require ActionView::Assertions in ActionController test_case.rb.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 89176736c8..0a728aa7c0 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -2,6 +2,7 @@ require 'rack/session/abstract/id' require 'active_support/core_ext/object/to_query' require 'active_support/core_ext/module/anonymous' require 'active_support/core_ext/hash/keys' +require 'action_view/testing/assertions' module ActionController module TemplateAssertions |