aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/javascript_helper.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/test/template/javascript_helper.rb b/actionpack/test/template/javascript_helper.rb
new file mode 100644
index 0000000000..39f02e90bf
--- /dev/null
+++ b/actionpack/test/template/javascript_helper.rb
@@ -0,0 +1,9 @@
+require File.dirname(__FILE__) + '/../abstract_unit'
+
+class JavascriptHelperTest < Test::Unit::TestCase
+ include ActionView::Helpers::JavascriptHelper
+
+ def test_escape_javascript
+ assert_equal %(This \\"thing\\" is really\\n netos\\'), escape_javascript(%(This "thing" is really\n netos'))
+ end
+end