diff options
author | Timm <kaspth@gmail.com> | 2013-09-03 09:30:37 +0200 |
---|---|---|
committer | Timm <kaspth@gmail.com> | 2014-06-16 21:04:12 +0200 |
commit | 4e97d7585a2f4788b9eed98c6cdaf4bb6f2cf5ce (patch) | |
tree | 7ad1487c75515bc83ef52421f91598cd0b31695a /actionpack | |
parent | cb865e1a7be5240a528aa30cad9c977c387fd40c (diff) | |
download | rails-4e97d7585a2f4788b9eed98c6cdaf4bb6f2cf5ce.tar.gz rails-4e97d7585a2f4788b9eed98c6cdaf4bb6f2cf5ce.tar.bz2 rails-4e97d7585a2f4788b9eed98c6cdaf4bb6f2cf5ce.zip |
Added deprecation warning to ActionDispatch::Assertions::TagAssertions.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/tag.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/tag.rb b/actionpack/lib/action_dispatch/testing/assertions/tag.rb new file mode 100644 index 0000000000..bbf3e7705b --- /dev/null +++ b/actionpack/lib/action_dispatch/testing/assertions/tag.rb @@ -0,0 +1,3 @@ +require 'active_support/deprecation' + +ActiveSupport::Deprecation.warn("ActionDispatch::Assertions::TagAssertions has been eprecated. Use the assert_select methods from SelectorAssertions in action_view/testing/assertions/selector.rb.")
\ No newline at end of file |