現在「現場で使えるRuby on rails5速習実践ガイド」という書籍を参考にしながらtaskleafというタスク管理アプリを作成しております。その過程でRspecのテストを行おうため、~/taskleaf$ bundle exec rspec spec/system/tasks_spec.rb
と打ち込んだのですが
Capybara starting Puma... * Version 3.12.6 , codename: Llamas in Pajamas * Min threads: 0, max threads: 4 * Listening on tcp://127.0.0.1:56705 sh: 1: pwsh.exe: not found sh: 1: pwsh.exe: not found sh: 1: pwsh.exe: not found sh: 1: pwsh.exe: not found sh: 1: pwsh.exe: not found sh: 1: pwsh.exe: not found DevTools listening on ws://127.0.0.1:56716/devtools/browser/abc29b7a-b201-41e5-9ca2-c487f8b8ff47 F Failures: 1) タスク管理機能 一覧表示機能 ユーザーAがログインしているとき ユーザーAが作成したタスクが表示される Failure/Error: expect(page).to have_content '最初のタスク' expected to find text "最初のタスク" in "Taskleaf\nログイン\nログイン\nメールアドレス\nパスワード" [Screenshot]: tmp/screenshots/failures_r_spec_example_groups_nested_nested_a_ユーザーaが作成したタスクが表示される_35.png "# ./spec/system/tasks_spec.rb:18:in `block (4 levels) in <top (required)>'" Finished in 24.55 seconds (files took 4.63 seconds to load) 1 example, 1 failure Failed examples: rspec ./spec/system/tasks_spec.rb:17 # タスク管理機能 一覧表示機能 ユーザーAがログインしているとき ユーザーAが作成したタスクが表示される
というメッセージが表示されうまくいきません。
~/taskleaf/spec/system/tasks_spec.rb
の中身は、
require 'rails_helper' describe 'タスク管理機能', type: :system do describe '一覧表示機能' do before do user_a = FactoryBot.create(:user, name: 'ユーザーA',email: 'a@example.com') FactoryBot.create(:task, name: '最初のタスク',user: user_a) end context 'ユーザーAがログインしているとき' do before do visit login_path fill_in 'メールアドレス', with: 'a@example.com' fill_in 'パスワード', with:'password' click_button 'ログインする' end it 'ユーザーAが作成したタスクが表示される' do expect(page).to have_content '最初のタスク' end end end end
です。
何が悪いのかが全く分からず、Googleで検索しても解決方法が全く分からなかったためteratailで質問させていただきました。
解決方法をご教授いただければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。