Is there any trivial way to copy the data from developmenet database into the test one? I know theres a way to copy schema and recreate database, but is there any rake task to p
You can use mysql directly:
mysqldump app_development | mysql app_test