前提・実現したいこと
RSpecでホームページのリンクを踏んだ時、ブラウザが正しく反応するか確認したい。
Rails 6.0.4.1
ruby 2.6.3
発生している問題・エラーメッセージ
Failed examples: rspec ./spec/system/site_layout_spec.rb:8 # SiteLayouts home layout returns title with 'Home | Chaser' rspec ./spec/system/site_layout_spec.rb:15 # SiteLayouts about layout returns title with 'About | Chaser'
該当のソースコード
RSpec
1require 'rails_helper' 2 3RSpec.describe "SiteLayouts", type: :system do 4 5 describe "home layout" do 6 it "returns title with 'Home | Chaser'" do 7 visit '/' 8 expect(page).to have_title 'Home | Chaser' 9 end 10 end 11 12 describe "about layout" do 13 it "returns title with 'About | Chaser'" do 14 visit about_path 15 expect(page).to have_title 'About | Chaser' 16 pending 17 end 18 end 19end
試したこと
下記の記事を参考にコーディングしました。
https://qiita.com/aokyo17/items/02d107214ca6de846018
補足情報
下記のようにブラウザで確認したところそれぞれのページで求めている「Home | Chase」と
「About | Chaser」のタイトルが問題なく表示されている状況です。
よろしくお願いします!
Failed examples: の上のメッセージも載せて
あなたの回答
tips
プレビュー