diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-18 20:20:41 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-18 20:20:41 -0300 |
commit | 9cb4d3e03b02576e9f2381879e0818364a84b76e (patch) | |
tree | adad943e727f7580b83f07234af0d6a5daf5181f /actionpack | |
parent | 79a05c4e45b72170cb4249a7b0255e54bbbc045a (diff) | |
download | rails-9cb4d3e03b02576e9f2381879e0818364a84b76e.tar.gz rails-9cb4d3e03b02576e9f2381879e0818364a84b76e.tar.bz2 rails-9cb4d3e03b02576e9f2381879e0818364a84b76e.zip |
Deprecate TagAssertion instead of removing
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG.md | 2 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/tag.rb | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index ddacbe2aa2..1c84bac3ff 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,4 +1,4 @@ -* Deleted the deprecated TagAssertions. +* Deprecated TagAssertions. *Kasper Timm Hansen* 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..fcfc9316c1 --- /dev/null +++ b/actionpack/lib/action_dispatch/testing/assertions/tag.rb @@ -0,0 +1 @@ +ActiveSupport::Deprecation.warn("ActionDispatch::Assertions::TagAssertions has been has been extracted to the rails-dom-testing gem.") |