summaryrefslogtreecommitdiff
path: root/jni/ruby/test/erb/test_erb_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/test/erb/test_erb_command.rb')
-rw-r--r--jni/ruby/test/erb/test_erb_command.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/jni/ruby/test/erb/test_erb_command.rb b/jni/ruby/test/erb/test_erb_command.rb
new file mode 100644
index 0000000..abc8fdb
--- /dev/null
+++ b/jni/ruby/test/erb/test_erb_command.rb
@@ -0,0 +1,11 @@
+# -*- coding: us-ascii -*-
+require 'test/unit'
+
+class TestErbCommand < Test::Unit::TestCase
+ def test_var
+ assert_in_out_err(["-w",
+ File.expand_path("../../../bin/erb", __FILE__),
+ "var=hoge"],
+ "<%=var%>", ["hoge"])
+ end
+end