Blame view

test/test_helper.rb 397 Bytes
dc8aa5b6   Joe Weakley   Rubocop corrections
1
  # frozen_string_literal: true
87fd11a1   Isaac Lewis   reorg
2
  
dc8aa5b6   Joe Weakley   Rubocop corrections
3
4
5
6
7
  $LOAD_PATH.unshift File.expand_path('../lib', __dir__)
  require 'syspro'
  
  require 'pry'
  require 'minitest/autorun'
f65bf747   Joe Weakley   Added and configu...
8
9
10
11
12
13
14
15
16
17
18
  require 'minitest-vcr'
  require 'webmock'
  
  VCR.configure do |c|
    c.cassette_library_dir = 'test/cassettes'
    c.hook_into :webmock
    # TODO: change passwords and move them to ENV
    # c.filter_sensitive_data() { ENV[] }
  end
  
  MinitestVcr::Spec.configure!