Sha256: fda1b40224a61eb45e68ad63d79c0fb58d52a0c6937944627c98d5f0c9ae36db

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 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'
require 'shoulda-matchers'
require 'rspec/collection_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

7 entries across 7 versions & 1 rubygems

Version Path
azeroth-1.0.0 spec/spec_helper.rb
azeroth-0.10.1 spec/spec_helper.rb
azeroth-0.10.0 spec/spec_helper.rb
azeroth-0.9.0 spec/spec_helper.rb
azeroth-0.8.2 spec/spec_helper.rb
azeroth-0.8.1 spec/spec_helper.rb
azeroth-0.8.0 spec/spec_helper.rb