Sha256: c22acb3f511307d8a53e063d8dfd94259b705b813435be200c0a721b7f0de89a

Contents?: true

Size: 824 Bytes

Versions: 6

Compression:

Stored size: 824 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'
require 'boletosimples'

RSpec.configure do |config|
  config.disable_monkey_patching!
  config.order = :random
  Kernel.srand config.seed
  config.filter_run focus: true
  config.run_all_when_everything_filtered = true
  config.expect_with :rspec do |expectations|
    expectations.syntax = :expect
  end
  config.mock_with :rspec do |mocks|
    mocks.syntax = :expect
    mocks.verify_partial_doubles = true
  end
  config.default_formatter = 'doc' if config.files_to_run.one?
end

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f }

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
boletosimples-2.1.0 spec/spec_helper.rb
boletosimples-2.0.0 spec/spec_helper.rb
boletosimples-1.0.4 spec/spec_helper.rb
boletosimples-1.0.3 spec/spec_helper.rb
boletosimples-1.0.2 spec/spec_helper.rb
boletosimples-1.0.1 spec/spec_helper.rb