0

我有这个 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}") }

但较短的代码失败了。 为什么?

4

1 回答 1

2

答案是我忘了在该声明之前添加:

subject { page }
于 2012-07-25T11:28:04.357 回答