我有这个 RSpec 测试 - 它正确通过:
it "should have the right title" do
page.should { have_selector('title',
:text => "#{base_title}") }
end
我正在尝试重新编写相同的代码,如下所示:
it { should have_selector('title',
:text => "#{base_title}") }
但较短的代码失败了。 为什么?