Sha256: ce90eef15f2b174cd966dd2bc6141b5f82fe11664066e0f796aeaea2f554c23f

Contents?: true

Size: 465 Bytes

Versions: 2

Compression:

Stored size: 465 Bytes

Contents

require 'coveralls'
Coveralls.wear!

require 'simplecov'

SimpleCov.start do
  add_filter 'spec'
end

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.filter_run focus: true
  config.run_all_when_everything_filtered = true

  Dir["#{File.realpath('.')}/spec/support/**/*.rb"].each { |f| load f }
end

def response_fixture(name)
  path = File.realpath("spec/fixtures/responses/#{name}.html")
  File.read(path)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cep-0.0.8 spec/spec_helper.rb
cep-0.0.7 spec/spec_helper.rb