前提・実現したいこと
RSpec テスト実装中です。
ヘッダーのリンクの表示のテストの実行中なのですが、
どのようにコードをかけばテストが正常に作動するのかわかりません。
該当のソースコード
_header.html.erb
1 <!--検索フォーム--> 2 <%= render "public/homes/search" %> 3 4 <!--通知アイコン--> 5 <%= render "public/notifications/circle" %>
_search.html.erb
1 <div id="search"> 2 <%= form_with url: search_path, method: :get, local: true do |f| %> 3 <%= f.text_field :keyword, placeholder: "キーワードで検索" %> 4 <%= button_tag type: "submit", class: "btn btn-default" do %> 5 <i class="fas fa-search pt-1" style="font-size: 20px;"></i> 6 <% end %> 7 <% end %> 8 </div>
_notifications.html.erb
1 2 <%= link_to(notifications_path) do %> 3 <% if unchecked_notifications.any? %> 4 <div class="bellmark"> 5 <span class="fa-stack"> 6 <i class="far fa-bell fa-lg fa-stack-2x"></i> 7 <i class="fas fa-circle n-circle fa-stack-1x"></i> 8 </span> 9 </div> 10 <% else %> 11 <span class="checked_bellmark"> 12 <i class="far fa-bell fa-lg"></i> 13 </span> 14 <% end %> 15<% end %> 16</div>
spec/system/login.rb
Ruby
1 2 describe "ヘッダーのテスト:ログインしている場合" do 3 let(:user){create(:user)} 4 5 before do 6 visit new_user_session_path 7 fill_in "user[nickname]", with: user.nickname 8 fill_in "user[password]", with: user.password 9 click_button "TeachMarketにログイン" 10 end 11 12 context "ヘッダーの表示" do 13 it "タイトルが表示されている" do 14 expect(page).to have_content "TeachMarket" 15 end 16 it "検索フォームの表示" do 17 expect(page).to have_field "keyword" 18 end 19 it "検索ボタンの表示" do 20 expect(page).to have_button "submit" 21 end 22 it "通知アイコンの表示" do 23 expect(page).to eq "/notifications" 24 end 25 end 26 end 27
試したこと
have_buttonやhave_link,
eq linkを試してみましたがエラーになってしまいます。
あなたの回答
tips
プレビュー