Skip to content

Instantly share code, notes, and snippets.

@leshill
Created August 3, 2010 12:37
Show Gist options
  • Save leshill/506303 to your computer and use it in GitHub Desktop.
Save leshill/506303 to your computer and use it in GitHub Desktop.
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