鉴于以下RSpec测试:
context "items" do
it "should be able to place links in an expandable menu" do
output = helper.button("Hello", '#') do
self.content << helper.item("Test", "example.org")
end.should include "Test"
end
end
以下帮助者:
def button(name, url, options = {}, &block)
if block_given?
content = with_output_buffer(&block)
content_tag(:li, :class => 'expandable menu-item') do
concat link_to(content_tag(:span, name), url, options)
concat content_tag :div, content, :class => :box
end
else
return content_tag :li, link_to(content_tag(:span, name), url, options), :class => :button
end
end
如果给按钮助手一个块,那么这个助手应该会在点击后创建一个按钮和一个可扩展的菜单。
示例视图:
= menu do
= button("Test", '#') do
%h1 Hello you!
产地:
<li class="expandable menu-item"><a href="#"><span>Test</span></a><div class="box"><h1>Hello you!</h1>
正是我所期待的!一旦我尝试了RSpec测试,它就失败了,经过进一步的检查,似乎没有任何东西在
中产生<div class="box">...</div>
RSpec输出:
expected "<li class=\"expandable menu-item\"><a href=\"#\"><span>Hello</span></a><div class=\"box\"></div></li>" to include "Test"
我试过在block_given里面提出内容吗?在content = with_output_buffer(&amp; block)之后它确实是空的。我必须在测试中做错了,为什么它是空的。
非常感谢帮助! :)
答案 0 :(得分:4)
好的,我会尝试: - )
您有什么特别的理由使用with_output_buffer
代替capture
吗?
您可以查看capture
来源:..../gems/actionpack-3.0.3/lib/action_view/helpers/capture_helper.rb
,您将看到它以与您使用它不同的方式使用with_output_buffer
。
要点是capture
可以使用返回字符串的块。所以,你可以简单地使用:
it "should work" do
helper.button("Hello", "#") do
"test"
end.should include "test"
end
更新:我忘了提到它会在您更改代码时起作用:
content = with_output_buffer(&block)
到
content = capture(&block)