我使用“rake db:fixtures:load”将虚拟数据插入开发db。我开始使用factory_girl。有没有办法在RAILS_ROOT / spec / factories / *。rb中将数据插入到开发db?
答案 0 :(得分:2)
工厂无意填补数据库。它们将为您的对象属性生成随机数据(除非另有说明)。因此,它不会用定义的数据填充开发数据库。
这里应该使用的是种子。更多信息:
http://ryandaigle.com/articles/2009/5/13/what-s-new-in-edge-rails-database-seeding 和 http://rails-bestpractices.com/posts/20-isolating-seed-data