Hacker News new | ask | show | jobs
Getting Friendly with Rails Fixtures (whatdoitest.com)
9 points by genericsteele 4484 days ago
1 comments

We'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.