私はこの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}") }
しかし、短いコードは失敗します。 なんで?