Sha256: 100f661c5f9ccb8d0158b6d74f745867b886c8ba213ad579ca2bd0974ed6c19a

Contents?: true

Size: 399 Bytes

Versions: 4

Compression:

Stored size: 399 Bytes

Contents

require 'simplecov'

SimpleCov.start

if ENV['CI'] == 'true'
  require 'codecov'
  SimpleCov.formatter = SimpleCov::Formatter::Codecov
else
  SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
end

require 'gatecoin'

RSpec.configure do |c|
  c.expect_with(:rspec) { |e| e.syntax = :expect }
  c.before(:each) do
    allow(FileUtils).to receive(:remove_entry_secure).with(anything)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gatecoin-0.3.0 spec/spec_helper.rb
gatecoin-0.2.0 spec/spec_helper.rb
gatecoin-0.1.1 spec/spec_helper.rb
gatecoin-0.1.0 spec/spec_helper.rb