我正在编写用于创建用户帐户的集成测试。
describe "with valid information" do
before (:each) do
fill_in 'first name', :with => 'test'
fill_in 'last name', :with => 'user'
fill_in "email", :with => "test@shakeshack.com"
fill_in "password", :with => "1234567"
fill_in "password confirmation", :with => "1234567"
end
it "should create a user" do
expect {click_button "Create"}.to change(User, :count).by(1)
end
end
当我运行本地服务器并使用相同的信息填写上述字段时,用户帐户已成功创建。我得到的错误如下:
User pages signup with valid information should create a user
Failure/Error: expect {click_button "Create"}.to change(User, :count).by(1)
count should have been changed by 1, but was changed by 0
# ./spec/requests/users_spec.rb:43:in `block (4 levels) in <top (required)>'
提前感谢您的解决方案或建议!