Sha256: 36c271c6c8212f5a910f524373afcaf6b66b71cf881899259405f087f7258bee

Contents?: true

Size: 1.01 KB

Versions: 9

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

require 'simplecov'
SimpleCov.start do
  add_filter '/spec/'
end

require 'pry-nav'
require 'azeroth'

require 'active_record'
ActiveRecord::Base.establish_connection(
  adapter: 'sqlite3', database: ':memory:'
)

require File.expand_path('spec/dummy/config/environment')
require File.expand_path('spec/dummy/db/schema.rb')
require 'rspec/rails'
require 'active_support/railtie'
require 'sinclair/matchers'

support_files = File.expand_path('spec/support/**/*.rb')
Dir[support_files].sort.each { |file| require file }

RSpec::Matchers.define_negated_matcher :not_change, :change
RSpec::Matchers.define_negated_matcher :not_add_method, :add_method

RSpec.configure do |config|
  config.infer_spec_type_from_file_location!
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.filter_run_excluding :integration unless ENV['ALL']

  config.order = 'random'
  config.include Sinclair::Matchers

  config.around do |example|
    Document.delete_all
    example.run
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
azeroth-0.7.4 spec/spec_helper.rb
azeroth-0.7.3 spec/spec_helper.rb
azeroth-0.7.2 spec/spec_helper.rb
azeroth-0.7.1 spec/spec_helper.rb
azeroth-0.7.0 spec/spec_helper.rb
azeroth-0.6.5 spec/spec_helper.rb
azeroth-0.6.4 spec/spec_helper.rb
azeroth-0.6.3 spec/spec_helper.rb
azeroth-0.6.2 spec/spec_helper.rb