Sha256: 3d7f803f2b091bafa82f2434a578fc6c671bfc3f67155a6bb0d9d4cd3a4a94eb

Contents?: true

Size: 398 Bytes

Versions: 3

Compression:

Stored size: 398 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 'quoinex'

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

3 entries across 3 versions & 1 rubygems

Version Path
quoinex-0.2.1 spec/spec_helper.rb
quoinex-0.2.0 spec/spec_helper.rb
quoinex-0.1.4 spec/spec_helper.rb