Sha256: 9ed183f9a9032b4b5b715e5ab226e8078dd1b51460b728992b662043209ed18d

Contents?: true

Size: 1.34 KB

Versions: 9

Compression:

Stored size: 1.34 KB

Contents

ENV['RAILS_ENV'] ||= 'test'
require_relative 'dummy/config/environment'

require 'rspec/rails'

require 'capybara/rspec'
require 'capybara/poltergeist'
require 'database_cleaner'
require 'factory_girl_rails'
require 'pry-byebug'

Rails.backtrace_cleaner.remove_silencers!
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f }

Capybara.default_driver = :poltergeist

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.use_transactional_fixtures = false
  config.filter_run :focus
  config.run_all_when_everything_filtered = true

  config.warnings = ENV['SHOW_WARNING']

  if config.files_to_run.one?
    config.default_formatter = 'doc'
  end

  config.profile_examples = 10
  config.order = :random

  config.include FactoryGirl::Syntax::Methods
  Kernel.srand config.seed

  config.around(:each, :fog_mock) do |example|
    begin
      Fog.mock!
      Fog::Mock.reset

      example.run
    ensure
      Fog.unmock!
    end
  end

  config.before(:suite) do
    DatabaseCleaner.strategy = :truncation
    DatabaseCleaner.clean_with :truncation
  end

  config.around(:each) do |example|
    DatabaseCleaner.cleaning do
      example.run
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
adhoq-0.2.0 spec/spec_helper.rb
adhoq-0.1.2 spec/spec_helper.rb
adhoq-0.1.1 spec/spec_helper.rb
adhoq-0.1.0 spec/spec_helper.rb
adhoq-0.0.7 spec/spec_helper.rb
adhoq-0.0.6 spec/spec_helper.rb
adhoq-0.0.5 spec/spec_helper.rb
adhoq-0.0.4 spec/spec_helper.rb
adhoq-0.0.3 spec/spec_helper.rb