RSpec Cookbook?

时间:2011-12-11 03:11:27

标签: ruby-on-rails ruby rspec

学习RSpec并尝试做一些教程。在其中一个教程中,提供了以下标准。我要编写测试和代码以使其通过。我只是在学习Ruby和RSpec。我在哪里可以找到根据规格类型编写RSpec测试的“食谱”?

规格:

A person should save correctly
A person should have many addresses
A person's address must have a street, city, and zip
A person's address can have an optional country
If the 'country' is left blank, it should default to 'USA' prior to saving

1 个答案:

答案 0 :(得分:3)

[2014年4月更新:前两个引用实际上已经死亡并且已取消链接原始链接仍可在降价时使用,以防它们恢复生命。]

这些应该足以涵盖您列出的测试;可能模型一是充足的。我很担心“人应该保存正确”,因为那实际上是在测试Rails。