Sha256: 2b098a33c568182c4bc1a0fffc52a48f80f7b08020df4165d8c06536c097f4df

Contents?: true

Size: 463 Bytes

Versions: 6

Compression:

Stored size: 463 Bytes

Contents

require 'rspec'
require 'pry'
require 'webmock/rspec'

RSpec.configure do |rspec|
  rspec.run_all_when_everything_filtered = true
  rspec.treat_symbols_as_metadata_keys_with_true_values = true
  rspec.filter_run_including :focus
  rspec.order = 'rand'
  rspec.color = true

  rspec.expect_with :rspec do |expectations|
    expectations.syntax = :expect
  end

  rspec.mock_with :rspec do |mocks|
    mocks.syntax = :expect
  end
end

WebMock.disable_net_connect!

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
contextio-2.0.0 spec/spec_helper.rb
contextio-1.8.1 spec/spec_helper.rb
contextio-1.8.0 spec/spec_helper.rb
contextio-1.7.2 spec/spec_helper.rb
contextio-1.7.1 spec/spec_helper.rb
contextio-1.7.0 spec/spec_helper.rb