Sha256: a002ba855f0842dfcaf01b7cfae91459b557da0f398861235a71fe7f41c3b1a4

Contents?: true

Size: 494 Bytes

Versions: 10

Compression:

Stored size: 494 Bytes

Contents

require 'pry'
require 'journey'

Journey.logger = Logger.new('/dev/null')

require 'dotenv'
Dotenv.load

require 'factory_girl'

Dir["spec/support/**/*.rb"].each { |f| require "./#{f}" }

RSpec.configure do |config|
  config.filter_run :focus
  config.run_all_when_everything_filtered = true
  config.order = 'random'
    
  config.before(:suite){ TestConfiguration.configure_for_test }
  
  config.before(:each){ ConfigurationCache.pull }
  config.after(:each){ ConfigurationCache.push }

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
embark-journey-0.2.1 spec/spec_helper.rb
embark-journey-0.1.8 spec/spec_helper.rb
embark-journey-0.1.7 spec/spec_helper.rb
embark-journey-0.1.6 spec/spec_helper.rb
embark-journey-0.1.5 spec/spec_helper.rb
embark-journey-0.1.4 spec/spec_helper.rb
embark-journey-0.1.3 spec/spec_helper.rb
embark-journey-0.1.1 spec/spec_helper.rb
embark-journey-0.1.0 spec/spec_helper.rb
embark-journey-0.0.29 spec/spec_helper.rb