From 3f0952d9df1db6e01ca608f30ba743f3e7d54dcc Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sun, 10 Sep 2006 02:51:38 +0000 Subject: Fix assert_tag so that :content => "foo" does not match substrings, but only exact strings. Use :content => /foo/ to match substrings. closes #2799 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5086 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/vendor/html-scanner/html/node.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib/action_controller/vendor') diff --git a/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb b/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb index 7b53af9591..a6490b1f3b 100644 --- a/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +++ b/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb @@ -239,7 +239,7 @@ module HTML #:nodoc: def match(conditions) case conditions when String - @content.index(conditions) + @content == conditions when Regexp @content =~ conditions when Hash -- cgit v1.2.3