requests/pages_spec.rb の下にこれら 2 つのテストがあります。
pages_spec.rb
require 'spec_helper'
describe "Pages" do
subject { page }
before { visit root_path }
describe "Home page" do
it { should have_selector('a', text: 'Post your property')}
it { should have_link('Post your property', href: new_apartment_path)}
end
end
最初のテストは成功し、2 番目のテストは次のように言って失敗します。
expected link "Post your property" to return something
これはhtmlです:
<a href="/en/apartment/new">Post your property</a>
テストが失敗する理由は何か分かりますか? ありがとう!ウリ