1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/rubyspec/library/erb/run_spec.rb
k0kubun fc7241ffe2 rubyspec: Fix method redefinition warning
ruby/spec/rubyspec/library/erb/run_spec.rb:63: warning: method redefined; discarding old main
ruby/spec/rubyspec/library/erb/result_spec.rb:53: warning: previous definition of main was here
ruby/spec/rubyspec/library/erb/run_spec.rb:76: warning: method redefined; discarding old main1
ruby/spec/rubyspec/library/erb/result_spec.rb:67: warning: previous definition of main1 was here
ruby/spec/rubyspec/library/erb/run_spec.rb:81: warning: method redefined; discarding old main2
ruby/spec/rubyspec/library/erb/result_spec.rb:72: warning: previous definition of main2 was here

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-29 10:53:54 +00:00

97 lines
1.9 KiB
Ruby

require 'erb'
require File.expand_path('../../../spec_helper', __FILE__)
describe "ERB#run" do
# TODO: what is this? why does it not use
# lambda { ... }.should output
def _steal_stdout
orig = $stdout
s = ''
def s.write(arg); self << arg.to_s; end
$stdout = s
begin
yield
ensure
$stdout = orig
end
return s
end
it "print the result of compiled ruby code" do
input = <<END
<ul>
<% for item in list %>
<li><%= item %>
<% end %>
</ul>
END
expected = <<END
<ul>
<li>AAA
<li>BBB
<li>CCC
</ul>
END
erb = ERB.new(input)
list = %w[AAA BBB CCC]
actual = _steal_stdout { erb.run(binding) }
actual.should == expected
end
it "share local variables" do
input = "<% var = 456 %>"
expected = 456
var = 123
_steal_stdout { ERB.new(input).run(binding) }
var.should == expected
end
it "is not able to h() or u() unless including ERB::Util" do
input = "<%=h '<>' %>"
lambda {
_steal_stdout { ERB.new(input).run() }
}.should raise_error(NameError)
end
it "is able to h() or u() if ERB::Util is included" do
myerb1 = Class.new do
include ERB::Util
def main
input = "<%=h '<>' %>"
ERB.new(input).run(binding)
end
end
expected = '&lt;&gt;'
actual = _steal_stdout { myerb1.new.main() }
actual.should == expected
end
it "use TOPLEVEL_BINDING if binding is not passed" do
myerb2 = Class.new do
include ERB::Util
def main1
#input = "<%= binding.to_s %>"
input = "<%= _xxx_var_ %>"
return ERB.new(input).run()
end
def main2
input = "<%=h '<>' %>"
return ERB.new(input).run()
end
end
eval '_xxx_var_ = 123', TOPLEVEL_BINDING
expected = '123'
actual = _steal_stdout { myerb2.new.main1() }
actual.should == expected
lambda {
_steal_stdout { myerb2.new.main2() }
}.should raise_error(NameError)
end
end