Created
August 3, 2010 12:37
-
-
Save leshill/506303 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
RSpec.configure do |config| | |
config.before(:all) do | |
clear_database | |
end | |
end | |
def clear_database | |
Mongoid.master.collections.select {|c| c.name !~ /system/ }.each(&:drop) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment