You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the test/models/user_test.rb file, I think test 'user with a valid email should be valid' do user = User.new(email: 'test@test.org', **password_digest**: 'test') assert user.valid? end
should rather be :
test 'user with a valid email should be valid' do user = User.new(email: 'test@test.org', **password**: 'test') assert user.valid? end
In my case it caused a failure during a rake test.