1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/erb/test_erb_command.rb
nobu 8326a747f9 erb: suppress warnings
* bin/erb (ERB::Main#run): get rid of shadowing outer local
  variables.  [ruby-core:65772] [Feature #10395]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48788 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2014-12-12 19:59:22 +00:00

11 lines
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