Alex wrote: > With Rails 2.3.x there was a rake task "rake db:test:clone" that I > used to use all the time in order to clone the development DB for use > with testing. > > However I can't seem to find that test with Rails 3.0. How is > everyone bootstrapping their test database etc. for testing?
You don't want to do that. Start from a blank DB, and in each test, use factories to create only the records you need for that test. That way it is clearer what is being tested. Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] Sent from my iPhone -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

