aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/testing/assertions/dom.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-05-02 03:21:40 -0300
committerEmilio Tagua <miloops@gmail.com>2009-05-02 03:21:40 -0300
commit5e790d368c5d0e89cfd5ef1245e4b131be63716f (patch)
treefe26ed0a2b3056dd67fe46558abd96712cef67d5 /actionpack/lib/action_controller/testing/assertions/dom.rb
parent9f36431f58c406312d0b0317543b7f69107e61e9 (diff)
parent3be3470fab788856b4559742434f195cc6b1009a (diff)
downloadrails-5e790d368c5d0e89cfd5ef1245e4b131be63716f.tar.gz
rails-5e790d368c5d0e89cfd5ef1245e4b131be63716f.tar.bz2
rails-5e790d368c5d0e89cfd5ef1245e4b131be63716f.zip
Merge commit 'rails/master'
Diffstat (limited to 'actionpack/lib/action_controller/testing/assertions/dom.rb')
-rw-r--r--actionpack/lib/action_controller/testing/assertions/dom.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/actionpack/lib/action_controller/testing/assertions/dom.rb b/actionpack/lib/action_controller/testing/assertions/dom.rb
deleted file mode 100644
index 5ffe5f1883..0000000000
--- a/actionpack/lib/action_controller/testing/assertions/dom.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-module ActionController
- module Assertions
- module DomAssertions
- # Test two HTML strings for equivalency (e.g., identical up to reordering of attributes)
- #
- # ==== Examples
- #
- # # assert that the referenced method generates the appropriate HTML string
- # assert_dom_equal '<a href="http://www.example.com">Apples</a>', link_to("Apples", "http://www.example.com")
- #
- def assert_dom_equal(expected, actual, message = "")
- clean_backtrace do
- expected_dom = HTML::Document.new(expected).root
- actual_dom = HTML::Document.new(actual).root
- full_message = build_message(message, "<?> expected to be == to\n<?>.", expected_dom.to_s, actual_dom.to_s)
-
- assert_block(full_message) { expected_dom == actual_dom }
- end
- end
-
- # The negated form of +assert_dom_equivalent+.
- #
- # ==== Examples
- #
- # # assert that the referenced method does not generate the specified HTML string
- # assert_dom_not_equal '<a href="http://www.example.com">Apples</a>', link_to("Oranges", "http://www.example.com")
- #
- def assert_dom_not_equal(expected, actual, message = "")
- clean_backtrace do
- expected_dom = HTML::Document.new(expected).root
- actual_dom = HTML::Document.new(actual).root
- full_message = build_message(message, "<?> expected to be != to\n<?>.", expected_dom.to_s, actual_dom.to_s)
-
- assert_block(full_message) { expected_dom != actual_dom }
- end
- end
- end
- end
-end