ruby/test/erb/test_erb_command.rb

12 строки
297 B
Ruby

# -*- 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