Sha256: e5e79c93c3582d5369a9a15f65992fdba7ff85e5b07e45ff92fa48b567f5541a

Contents?: true

Size: 836 Bytes

Versions: 4

Compression:

Stored size: 836 Bytes

Contents

# External
require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start

# Internal
require 'twitter_anonymous_client'

# External
require 'webmock/rspec'

# Require this file using `require "spec_helper"` within each of your specs
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  # Run specs in random order to surface order dependencies.
  config.order = 'random'
end

def fixture(file)
  fixtures_path = File.expand_path(File.join('..', '..', 'fixtures'), __FILE__)
  File.new(File.join(fixtures_path, file))
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
twitter_anonymous_client-1.0.2.0 spec/support/spec_helper.rb
twitter_anonymous_client-1.0.1.0 spec/support/spec_helper.rb
twitter_anonymous_client-1.0.0.0 spec/support/spec_helper.rb
twitter_anonymous_client-0.0.1 spec/support/spec_helper.rb