Hartle のチュートリアルを進めていきます。私は彼のウォークスルー サンプル アプリケーションの開発環境をセットアップしている最中です。RSpec はテストに合格していません。もちろん、ここで私が気付いていないバグがあると信じています。
失敗:
失敗:
1) 静的ページ ホームページには「サンプル アプリ」というコンテンツが必要です 失敗/エラー: '/static_pages/home' にアクセスvisit' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_1:0x007fb0f97a9d90>
# ./spec/requests/static_pages_spec.rb:8:in
してください
0.00289秒で完走 1例1失敗
失敗した例:
rspec ./spec/requests/static_pages_spec.rb:7 # 静的ページのホームページには「サンプル アプリ」というコンテンツが必要です
家:
is the home page for the
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a>
sample application.
</p>
static_pages_spec ファイル:
require 'spec_helper'
describe "Static pages" do
describe "Home page" do
it "should have the content 'Sample App'" do
visit '/static_pages/home'
expect(page).to have_content('Sample App')
end
end
end