我需要在我的工厂中生成随机纬度和经度值以进行测试,但使用Random类会给出重复值并使我的测试失败,如何在FactoryGirl中生成随机浮点值? 编辑:相关的一段代码 factory :location do lat ra
编辑:相关的一段代码
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