Plugins - Safety Net
Add to favoritesSafety Net is a Rails plugin that prevents developers from deleting the test database if it has the same name as the development or production database.
Purging the poor innocent database is prevented in two ways:
1. By adding a prerequisite check to the rake script that normaly performs this task.
2. By modifying the fixtures method on ActiveRecord to avoid the same fate when running individual tests with the ruby command.
