Sha256: 6d34c5f17b08585823987f81c3ee9a3ea552065163947304ee6de811c9f4c3fb

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

# Configure Rails Envinronment
ENV["RAILS_ENV"] ||= "test"

require File.expand_path("../dummy/config/environment.rb",  __FILE__)

require 'rspec/rails'
require 'rspec/autorun'
require 'rails/mongoid'
require 'forgery'
require 'database_cleaner'

Rails.backtrace_cleaner.remove_silencers!

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  # Database Cleaner support
  config.before(:each) do
    DatabaseCleaner.strategy = :truncation, {:except => %w[  ]}
    DatabaseCleaner.clean
  end

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
canmoia-0.0.2 spec/spec_helper.rb~
canmoia-0.0.1 spec/spec_helper.rb~