Sha256: 516c965aac561c000c3c317484748c275e413bb24e17476e8a5a4b350d456961

Contents?: true

Size: 936 Bytes

Versions: 1

Compression:

Stored size: 936 Bytes

Contents

unless %w(jruby rbx).include? RUBY_ENGINE
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]
  SimpleCov.start
end

require 'dolarblue'

require 'vcr' # gem 'vcr'

VCR.configure do |c|
  c.cassette_library_dir = 'spec/cassettes'
  c.hook_into :webmock
  c.configure_rspec_metadata!
end

# Require this file using `require "spec_helper"` within each of your specs
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
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
  config.order = 'random' # Run specs in random order to surface order dependencies.
  config.expect_with :rspec do |c|
    c.syntax = :expect  # disable `should` syntax  http://goo.gl/BGxqP
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dolarblue-0.4.0 spec/spec_helper.rb