Skip to content
Extraits de code Groupes Projets
Valider c84c99f9 rédigé par maxwell's avatar maxwell
Parcourir les fichiers

created the rspec runner so you dont have to worry about cleaning mongoid...

created the rspec runner so you dont have to worry about cleaning mongoid every run completed chore MS
parent 3fd7f271
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -3,10 +3,7 @@ require File.dirname(__FILE__) + '/../spec_helper'
describe UsersController do
render_views
#fixtures here?
it 'should, after logging in redirect to the dashboard page' do
post 'index'
puts "boner!"
end
end
end
require File.dirname(__FILE__) + '/../spec_helper'
describe 'making sure the spec runner works' do
it 'should not delete the database mid-spec' do
User.count.should == 0
billy = User.create(:email => "billy@aol.com", :password => "foobar")
User.count.should == 1
end
it 'should make sure the last user no longer exsists' do
User.count.should == 0
end
describe 'testing a before do block' do
before do
@bill = User.create(:email => "billy@aol.com", :password => "foobar")
end
it 'should have cleaned before the before do block runs' do
User.count.should == 1
end
end
end
\ No newline at end of file
......@@ -19,6 +19,9 @@ Rspec.configure do |config|
config.mock_with :rspec
config.fixture_path = "#{::Rails.root}/spec/fixtures"
config.before(:each) do
Mongoid.master.collections.select { |c| c.name != 'system.indexes' }.each(&:drop)
end
# If you're not using ActiveRecord, or you'd prefer not to run each of your
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter