Sha256: 3a4bebcae348c98326bdd606a5064ffa7a327b39ac93759394efcd4de970c2b5
Contents?: true
Size: 738 Bytes
Versions: 2
Compression:
Stored size: 738 Bytes
Contents
# ------------------------------------------------------------ # Simplecov require 'colorize' require 'simplecov' if ENV['COVERAGE'] # ------------------------------------------------------------ # RSpec require 'webmock/rspec' RSpec.configure do |config| config.color = true config.tty = true config.formatter = :documentation config.before(:each) { WebMock.disable_net_connect!(allow_localhost: true) } config.after(:each) { WebMock.allow_net_connect! } config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end config.shared_context_metadata_behavior = :apply_to_host_groups end # ------------------------------------------------------------ # Code under test require 'berkeley_library/marc'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
berkeley_library-marc-0.2.1 | spec/spec_helper.rb |
berkeley_library-marc-0.2.0 | spec/spec_helper.rb |