diff --git a/Gemfile b/Gemfile index 3ecddc9d6b3be21d775272b3dbd40e317eabf3e0..69d099589c96f67568099cc4fc41001169ac0d31 100644 --- a/Gemfile +++ b/Gemfile @@ -11,6 +11,7 @@ gem "haml" gem "devise", :git => "git://github.com/plataformatec/devise.git" gem 'roxml', :git => "git://github.com/Empact/roxml.git" + group :test do gem 'rspec', '>= 2.0.0.beta.12' gem 'rspec-rails', ">= 2.0.0.beta.8" diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 060511f9a5c1aa4278eff6180425374cc9cd3f37..d1152955eddda3287ea30ced6dbf93739f3f25bc 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -16,7 +16,7 @@ Rspec.configure do |config| # # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: #this is a dumb hax TODO - config.mock_with :mocha + #config.mock_with :mocha # config.mock_with :flexmock # config.mock_with :rr config.mock_with :rspec @@ -41,5 +41,5 @@ Rspec.configure do |config| # If you're not using ActiveRecord, or you'd prefer not to run each of your # examples within a transaction, comment the following line or assign false # instead of true. - config.use_transactional_fixtures = false + config.use_transactional_fixtures = true end