Rspecでテストを実行すると以下のようなエラーが発生します
taskleaf/spec/system/tasks_spec.rb:32: syntax error, unexpected end-of-input, expecting end
tasks_spec.rb
1require 'rails_helper' 2 3describe 'タスク管理機能', type: :system do 4 describe '一覧表示機能' do 5 before do 6 user_a = FactoryBot.create(:user, name: 'ユーザーA', email: 'a@example.com') 7 FactoryBot.create(:task, name: '最初のタスク', user: user_a) 8 end 9 10 context 'ユーザーAがログインしているとき' do 11 before do 12 visit login_path 13 fill_in 'メールアドレス', with: 'a@example.com' 14 fill_in 'パスワード', with: 'password' 15 click_button 'ログインする' 16 end 17 18 context 'ユーザーBがログインしているとき' do 19 before do 20 FactoryBot.create(:user, name: 'ユーザーB', email: 'b@example.com') 21 visit login_path 22 fill_in 'メールアドレス', with: 'b@example.com' 23 fill_in 'パスワード', with: 'password' 24 click_button 'ログインする' 25 end 26 27 it 'ユーザーAが作成したタスクが表示されない' do 28 expect(page).to have_no_content '最初のタスク' 29 end 30 end 31 end 32 end
参考書と違う箇所は見当たらなく、改善する術がありません。ご教授お願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。