Sha256: aae110a9153e542961ea585a7b5d615377c0d2cc8f31b04e04eff5a76ae4ea17

Contents?: true

Size: 538 Bytes

Versions: 2

Compression:

Stored size: 538 Bytes

Contents

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:')

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

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

  config.order = 'random'

  config.before do
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
azeroth-0.0.4 spec/spec_helper.rb
azeroth-0.0.3 spec/spec_helper.rb