Sha256: 5abfecfe2fc480dc74ab115c94570877132bea1de57f20c5044df28bfe287257

Contents?: true

Size: 668 Bytes

Versions: 7

Compression:

Stored size: 668 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path('../lib', __dir__)

require 'simplecov'
SimpleCov.start

require 'minitest/autorun'

require 'dotenv'
Dotenv.load '.env.local', '.env.test'

require 'vcr'
require 'cgi'
VCR.configure do |vcr|
  vcr.hook_into :webmock
  vcr.cassette_library_dir = 'test/cassettes'
  vcr.filter_sensitive_data('SMARTLING_PROJECT_ID') { ENV.fetch('SMARTLING_PROJECT_ID') }
  vcr.filter_sensitive_data('SMARTLING_USER_ID') { ENV.fetch('SMARTLING_USER_ID') }
  vcr.filter_sensitive_data('SMARTLING_USER_SECRET') { ENV.fetch('SMARTLING_USER_SECRET') }
end

require 'minitest-vcr'
MinitestVcr::Spec.configure!

require 'pry'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
smartring-0.0.7 test/test_helper.rb
smartring-0.0.6 test/test_helper.rb
smartring-0.0.5 test/test_helper.rb
smartring-0.0.4 test/test_helper.rb
smartring-0.0.3 test/test_helper.rb
smartring-0.0.2 test/test_helper.rb
smartring-0.0.1 test/test_helper.rb