it's possible to do this?,
how you can do?
|
|
(This answer works in rails 3.0.7) I found the catch is how you set up the Gemfile - you need to do something along the lines of
We found problems having factory_girl_rails outside of the :test environment, which we didn't manage to get to the bottom of (maybe something to do with the way rails does class caching?) Once that is done, I like to actually load data from a library in lib, something like...
And then running this method from within db:seed using
|
|||||||
|
|
All you need to do is add "require 'factory_girl_rails'" do the db/seeds.rb file. This will give you access to your factories. |
|||||
|
|
You can insert the following code into your spec_helper.rb, and it make some instances of the data you want (in this case "products" from the yaml file):
|
||||
|
|
|
Is this what you are looking for?: Can I somehow execute my db/seeds.rb file from my rails app? |
||||
|
|