Stop regenerating fixtures on every spec run

This commit is contained in:
Raphael 2010-11-29 23:22:49 -08:00
parent 2d3f2df1fd
commit fcb0e07dd7

View file

@ -27,10 +27,6 @@ RSpec.configure do |config|
DatabaseCleaner.strategy = :truncation DatabaseCleaner.strategy = :truncation
DatabaseCleaner.orm = "mongo_mapper" DatabaseCleaner.orm = "mongo_mapper"
config.before(:suite) do
UserFixer.regenerate_user_fixtures
end
config.before(:each) do config.before(:each) do
EventMachine::HttpRequest.stub!(:new).and_return(FakeHttpRequest.new(:success)) EventMachine::HttpRequest.stub!(:new).and_return(FakeHttpRequest.new(:success))
EventMachine::HttpRequest.any_instance.stubs(:post) EventMachine::HttpRequest.any_instance.stubs(:post)
@ -39,7 +35,6 @@ RSpec.configure do |config|
UserFixer.load_user_fixtures UserFixer.load_user_fixtures
Notifier.stub!(:send_request_accepted!).and_return(true) Notifier.stub!(:send_request_accepted!).and_return(true)
Notifier.stub!(:send_new_request!).and_return(true) Notifier.stub!(:send_new_request!).and_return(true)
end end
end end