Factory Girl Trait未注册

时间:2015-09-16 14:18:28

标签: ruby-on-rails factory-bot

我的模型Address有一个强制属性邮政编码和另外两个 - latitudelongitude

每次创建Address时,都会通过Geocoder gem检索latitudelongitude并存储。如果地址为latitudelongitude,则该地址有效。

我尝试使用FactoryGirl和Faker创建地址,我希望生成邮政编码,直到latitudelongitude有值。

FactoryGirl.define do
  factory :address do
    begin
      zipcode { Faker::Address.zip }
    end while latitude.nil? || longitude.nil?
  end
end

当我使用地址运行测试时出现此错误:

  

特征未注册:纬度。

0 个答案:

没有答案