Sha256: 8480c8c08498299553d205d89c16065b001e912493566b0172407c997ed9457e

Contents?: true

Size: 737 Bytes

Versions: 10

Compression:

Stored size: 737 Bytes

Contents

require "codeclimate-test-reporter"
CodeClimate::TestReporter.start

require 'wikidata'
require 'vcr'
require 'pry'

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.syntax = [:should, :expect]
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.filter_run focus: true
  config.run_all_when_everything_filtered = true

  VCR.configure do |c|
    c.cassette_library_dir = 'spec/fixtures/vcr'
    c.default_cassette_options = { record: :new_episodes }
    c.hook_into :webmock
    c.allow_http_connections_when_no_cassette = true
    c.configure_rspec_metadata!
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
wikidata-client-0.0.10 spec/spec_helper.rb
wikidata-client-0.0.9 spec/spec_helper.rb
wikidata-client-0.0.8 spec/spec_helper.rb
wikidata-client-0.0.7 spec/spec_helper.rb
wikidata-client-0.0.6 spec/spec_helper.rb
wikidata-client-0.0.5 spec/spec_helper.rb
wikidata-client-0.0.4 spec/spec_helper.rb
wikidata-client-0.0.3 spec/spec_helper.rb
wikidata-client-0.0.2 spec/spec_helper.rb
wikidata-client-0.0.1 spec/spec_helper.rb