0

私はこのテストに合格したと思っていたでしょう。なぜそうではないのか、何か考えはありますか?

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
4

2 に答える 2

0

愚かな間違い。ユーザー名の検証がありました!

于 2013-10-21T16:32:09.457 に答える