我正在使用 Monban 进行用户身份验证,并想在 seed.rb 中创建一个测试用户进行开发。目前我在seeds.rb中有这个:
include Monban::ControllerHelpers #I tried with and without this
@user = sign_up({name: 'foo', email: 'foo@bar.com', password: '123'})
到目前为止无法让它工作。当您需要使用 Monban 之类的工具“消化”密码时,如何创建测试用户?