diff options
author | Timm <kaspth@gmail.com> | 2013-10-11 12:57:36 +0200 |
---|---|---|
committer | Timm <kaspth@gmail.com> | 2014-06-16 21:04:18 +0200 |
commit | 6061472b8c310158a2a2e8e9a6b81a1aef6b60fe (patch) | |
tree | fa32e3cb3187d0e290ed8758bc0c06cb5aa739b4 /actionpack/lib/action_dispatch/testing/assertions | |
parent | 5ac99b09c459ddd422d8e51d93715d67539d9380 (diff) | |
download | rails-6061472b8c310158a2a2e8e9a6b81a1aef6b60fe.tar.gz rails-6061472b8c310158a2a2e8e9a6b81a1aef6b60fe.tar.bz2 rails-6061472b8c310158a2a2e8e9a6b81a1aef6b60fe.zip |
Changed deprecation message in dom and selector assertions in Action Dispatch.
Diffstat (limited to 'actionpack/lib/action_dispatch/testing/assertions')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/dom.rb | 2 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/selector.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/dom.rb b/actionpack/lib/action_dispatch/testing/assertions/dom.rb index 53d1b198e6..fb579b52fe 100644 --- a/actionpack/lib/action_dispatch/testing/assertions/dom.rb +++ b/actionpack/lib/action_dispatch/testing/assertions/dom.rb @@ -1,3 +1,3 @@ require 'active_support/deprecation' -ActiveSupport::Deprecation.warn("ActionDispatch::Assertions::DomAssertions has been moved to ActionView. You can find it in action_view/testing/assertions/dom.rb.")
\ No newline at end of file +ActiveSupport::Deprecation.warn("ActionDispatch::Assertions::DomAssertions has been extracted to the rails-dom-testing gem.")
\ No newline at end of file diff --git a/actionpack/lib/action_dispatch/testing/assertions/selector.rb b/actionpack/lib/action_dispatch/testing/assertions/selector.rb index bb6aec7415..19eca60f70 100644 --- a/actionpack/lib/action_dispatch/testing/assertions/selector.rb +++ b/actionpack/lib/action_dispatch/testing/assertions/selector.rb @@ -1,3 +1,3 @@ require 'active_support/deprecation' -ActiveSupport::Deprecation.warn("ActionDispatch::Assertions::SelectorAssertions has been moved to Action View in action_view/testing/assertions/selector.rb.")
\ No newline at end of file +ActiveSupport::Deprecation.warn("ActionDispatch::Assertions::SelectorAssertions has been has been extracted to the rails-dom-testing gem.")
\ No newline at end of file |