当前位置 : 主页 > 编程语言 > ruby >

ruby-on-rails – 在FactoryGirl中生成随机浮点数

来源:互联网 收集:自由互联 发布时间:2021-06-23
我需要在我的工厂中生成随机纬度和经度值以进行测试,但使用Random类会给出重复值并使我的测试失败,如何在FactoryGirl中生成随机浮点值? 编辑:相关的一段代码 factory :location do lat ra
我需要在我的工厂中生成随机纬度和经度值以进行测试,但使用Random类会给出重复值并使我的测试失败,如何在FactoryGirl中生成随机浮点值?

编辑:相关的一段代码

factory :location do
  lat rand(-90.0..90.0)
  lng rand(-180.0..180.0)
end
使用 faker宝石.

factory :address do
  latitude { Faker::Address.latitude }
  longitude { Faker::Address.longitude }
end
网友评论