aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/prototype_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template/prototype_helper_test.rb')
-rw-r--r--actionpack/test/template/prototype_helper_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/template/prototype_helper_test.rb b/actionpack/test/template/prototype_helper_test.rb
index eef6841727..fc4ebeccc3 100644
--- a/actionpack/test/template/prototype_helper_test.rb
+++ b/actionpack/test/template/prototype_helper_test.rb
@@ -171,6 +171,11 @@ class JavaScriptGeneratorTest < Test::Unit::TestCase
@generator.replace_html('element', '<p>This is a test</p>')
end
+ def test_replace_element_with_string
+ assert_equal 'Element.replace("element", "<div id=\"element\"><p>This is a test</p></div>");',
+ @generator.replace_element('element', '<div id="element"><p>This is a test</p></div>')
+ end
+
def test_remove
assert_equal '["foo"].each(Element.remove);',
@generator.remove('foo')