summaryrefslogtreecommitdiff
path: root/test/erb/test_erb_command.rb
blob: a21feb004dd8e2d280549ea8123aca65b378fc6e (plain)
1
2
3
4
5
6
7
8
9
10
# -*- coding: us-ascii -*-
require 'test/unit'

class TestErbCommand < Test::Unit::TestCase
  def test_var
    assert_in_out_err([File.expand_path("../../../bin/erb", __FILE__),
                       "var=hoge"],
                      "<%=var%>", ["hoge"])
  end
end