Getting Friendly with Rails Fixtures
whatdoitest.com
Getting Friendly with Rails Fixtures
1–3 of 3 posts
Re: Getting Friendly with Rails Fixtures
#2We've found this to be the great spot in between.
https://github.com/rdy/fixture_builder
You use factories to build your fixtures and it regenerates if needed.
I used it in a sample app recently here: https://github.com/taskrabbit/rails_engines_example/blob/mas...
Re: Getting Friendly with Rails Fixtures
#3We've found this to be the great spot in between. https://github.com/rdy/fixture_builder You use factories to build your fixtures and it regenerates if needed. I used it in a sample app recently here: https://github.com/taskrabbit/rails_engines_example/blob/mas...
That's the best of both worlds. I'm going to give this a try.