Created
January 29, 2011 17:47
-
-
Save rodrigodealer/802037 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# carrega no env.rb | |
seed_file = File.join(Rails.root, "db", "seeds.rb") | |
load(seed_file) | |
# no final, limpa a base de teste | |
at_exit do | |
require 'database_cleaner' | |
require 'database_cleaner/cucumber' | |
DatabaseCleaner.strategy = :truncation | |
DatabaseCleaner.clean | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment