Module: LedgerSync::Test::Support

Defined in:
lib/ledger_sync/test/support.rb

Class Method Summary collapse

Class Method Details

.setup(*paths_to_require) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/ledger_sync/test/support.rb', line 24

def self.setup(*paths_to_require)
  require 'webmock/rspec'
  require 'simplecov'
  require 'coveralls'
  Coveralls.wear!

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
    [
      Coveralls::SimpleCov::Formatter,
      SimpleCov::Formatter::HTMLFormatter
    ]
  )

  SimpleCov.start do
    add_filter 'lib/ledger_sync/util/debug.rb'
  end

  # Set an environment variable to determine when we are testing.  This
  # prevents things like the QuickBooks Online client overwriting
  # environment variables with dummy values.
  ENV['TEST_ENV'] = 'true'

  require 'bundler/setup'
  require 'ap'
  require 'byebug'

  paths_to_require.each { |e| require e.to_s }

  # Include test adaptor
  require File.join(LedgerSync.root, 'spec/support/test_ledger/config')

  core_support :factory_bot

  RSpec.configure do |config|
    # Enable flags like --only-failures and --next-failure
    config.example_status_persistence_file_path = 'tmp/rspec_history.txt'

    # Disable RSpec exposing methods globally on `Module` and `main`
    config.disable_monkey_patching!

    config.expect_with :rspec do |c|
      c.syntax = :expect
    end
  end
end