1

如何断言在使用 Cucumber 时未创建用户?在 RSpec 中,我将使用以下块,我无法将其转换为 Cucumber:

...
describe "with invalid information" do
  it "should not create a new user" do
    expect { click_button submit }.not_to change(User, :count)
  end
end

# Cucumber equivalent
When /^he submits invalid information$/ do
  click_button "Sign up"
end
Then /^an account should not be created$/ do
  # not sure how to translate the expect block
end
4

3 回答 3

2

你也可以做

Given I have 3 users
When I submit with invalid information
Then I should have 3 users
于 2012-10-02T19:38:21.927 回答
2

在此示例中,您将知道用户将使用的电子邮件,因此您可以:

Then /^an account should not be created$/ do
  User.where(email: "youremail@example.com").first.should be_nil
end
于 2012-10-02T19:13:53.073 回答
1

您可以使用 lambda 直接翻译您的 RSpec 测试,而不是依赖解决方法。

Then /^an account should not be created$/ do
  save = lambda { click_button :submit }
  expect(save).not_to change(User, :count)
end
于 2014-09-30T07:28:47.033 回答