如何强制Forgery在Factory Girl定义中返回唯一数据

时间:2011-10-27 21:09:37

标签: ruby-on-rails rspec factory-bot ruby-forgery

我的工厂看起来像这样:

Factory.define :coupon do |c|
  c.title { Forgery(:lorem_ipsum).sentences(3, :random => true) }
end

我从Rspec打来的电话看起来像这样:

coupons = []
5.times {|i| coupons << Factory(:coupon, :starts_at => i.days.ago) }

使用我的优惠券模型,我需要验证,要求标题是唯一的。我能够运行此测试的唯一方法是在我的工厂中执行此操作:

Factory.define :coupon do |c|
  c.title {|i| Forgery(:lorem_ipsum).sentences(3, :random => true) + "#{i}" }
end

当然必须有更好的方法吗?

1 个答案:

答案 0 :(得分:5)

我就是这样做的(使用新的Factory Girl语法):

FactoryGirl.define do
  factory :coupon do
    sequence(:title)     { |n| Forgery::LoremIpsum.words(n, :random => true) }
    sequence(:starts_at) { |n| n.days.ago } 
  end
end

然后在规范中创建优惠券:

coupons = FactoryGirl.create_list(:coupon, 5)