嘿,我有一个看起来像这样的测试
test 'create account' do
if User.create(email: 'me@test.com', password: 'blahblah')
assert true
else
assert User.msg
end
end
但是当我尝试运行它时,我收到如下错误消息:
1) Error:
UserTest#test_create_account:
ActiveRecord::RecordNotUnique: PG::UniqueViolation: ERROR: duplicate key value violates unique constraint "index_users_on_email"
DETAIL: Key (email)=() already exists.
: INSERT INTO "users" ("created_at", "updated_at", "id") VALUES ('2013-10-16 21:59:54', '2013-10-16 21:59:54', 298486374)
这在我看来好像我没有初始化电子邮件,但据我所知,这应该用我上面的创建来初始化。我正在使用强大的参数,所以我没有启用任何 attr_accessable 并且我可以运行它。有谁知道这可能是什么原因造成的?如果您想了解更多信息,请告诉我。