私はこのテストに合格したと思っていたでしょう。なぜそうではないのか、何か考えはありますか?
it 'should create an account' do
visit new_user_registration_path
fill_in 'user_email', with: 'newtest@test.com'
fill_in 'user_password', with: 'testing123'
fill_in 'user_password_confirmation', with: 'testing123'
expect{
click_button 'Sign Up'
}.to change{User.count}.by(1)
end
私はただ得る
result should have been changed by 1, but was changed by 0