mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8326a747f9
* 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
11 lines
297 B
Ruby
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
|