0
私はレールで新しいです。私は創造性をテストするためにコピーバラの宝石を使用しています。ここで私は、エラーを持ってテストを実行した後にテストコードカピバラのレールテストのエラー
require 'test_helper'
class UserTasksTest < ActionDispatch::IntegrationTest
test 'Should create a new user' do
visit root_url
click_link 'Sign up'
fill_in "Email", with: '[email protected]'
fill_in "Password", with: 'capybara'
fill_in "Password confirmation", with: 'capybara'
click_button 'Sign up'
within("h1") do
assert has_content?(user.email)
end
end
end
は次のとおりです。
undefined local variable or method `user'
にはどうすれば正常にテストを書くべきですか?
ありがとう、本当に役に立った:) –