:all -> :each

This commit is contained in:
bmabey 2009-03-10 21:53:02 -07:00
parent d6fb45ab70
commit ee0c0c2152
1 changed files with 2 additions and 2 deletions

View File

@ -66,11 +66,11 @@ Spec::Runner.configure do |config|
DatabaseCleaner.clean_with(:truncation)
end
config.before(:all) do
config.before(:each) do
DatabaseCleaner.start
end
config.after(:all) do
config.after(:each) do
DatabaseCleaner.clean
end