2021-04-01から1ヶ月間の記事一覧

テストバグ修正

環境 rbenv local 2.6.6 nodenv local 12.14.0 rails test:systemでテストを実行したところ sign up success login logout login faild not exist user visit about pageができない sign upは検証ツールで確かめると、viewからフォーム送信はできていること…

Rspec実行時におけるエラー

エラー内容 system specを用いて新規作成機能のコードをテストした際、「Failure/Error: fill_in '名称', with: task_name」と「Capybara::ElementNotFound: Unable to find field "タイトル"」エラーがでた。 エラー画面 「名称」は無効になっているので使…

ActiveRecordエラー

ActiveRecord::StatementInvalidSQLite3::SQLException: no such column: tasks.user_id: error文に書いてあるとおりtasksテーブルにuser_idカラムがないというエラーである。 データベース上でUserとTaskを紐付ける際に発生した。 まず、ジェネレータでマイ…