Files
grecia/spec/rails_helper.rb
kikito be173ff581 removes use_transaction_fixtures from rails_helper
It is already configured in spec_helper.rb (and makes other things fail)
2015-07-27 19:07:02 +02:00

21 lines
521 B
Ruby

ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
abort("The Rails environment is running in production mode!") if Rails.env.production?
require 'rspec/rails'
require 'spec_helper'
require 'capybara/rails'
require 'capybara/rspec'
require 'capybara/poltergeist'
include Warden::Test::Helpers
Warden.test_mode!
ActiveRecord::Migration.maintain_test_schema!
RSpec.configure do |config|
config.infer_spec_type_from_file_location!
end
Capybara.javascript_driver = :poltergeist