Rails 3 Tutorial Chapter 11 “Validation failed: Email has already been taken” error

后端 未结 5 1343
伪装坚强ぢ
伪装坚强ぢ 2020-12-09 05:59

My trouble arose in Chapter 11 of the Ruby on Rails Tutorial here.

I was seeing this rspec error:

Failure/Error: :user => Factory(:user, :email =&         


        
5条回答
  •  鱼传尺愫
    2020-12-09 06:52

    It helped, added to the file factories

    sequence(:email) {|n| "person#{n}@example.com" }
    

提交回复
热议问题