Sha256: ea773a5551f55ce3c6dc6884df4cff478cf8cdd092a780c3b20e260a7851cd58

Contents?: true

Size: 1.71 KB

Versions: 5

Compression:

Stored size: 1.71 KB

Contents

# frozen_string_literal: true

if ENV.fetch('COVERAGE', nil) == 'true'
  require 'simplecov'
  require 'simplecov-console'

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
        SimpleCov::Formatter::HTMLFormatter,
        SimpleCov::Formatter::Console,
  ]

  SimpleCov.start do
    track_files 'lib/**/*.rb'
  end

  puts "Using SimpleCov v#{SimpleCov::VERSION}"
end

require 'bundler/setup'
Bundler.setup

require 'finapps'
require 'webmock/rspec'

# noinspection RubyResolve
require File.join(File.dirname(__dir__), 'spec/support/fake_api')
require File.join(File.dirname(__dir__), 'spec/spec_helpers/client')
require File.join(File.dirname(__dir__), 'spec/spec_helpers/api_request')

RSpec.configure do |config|
  config.expect_with(:rspec) do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
    expectations.syntax = :expect
  end
  config.mock_with(:rspec) {|mocks| mocks.verify_partial_doubles = true }
  # config.filter_run_including :focus => true
  config.default_formatter = 'doc' if config.files_to_run.one?
  config.order = :random
  config.example_status_persistence_file_path = 'spec/examples.txt'
  config.warnings = true
  Kernel.srand config.seed

  config.before do
    base_url =
      "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v#{FinAppsCore::REST::Defaults::API_VERSION}/"
    stub_request(:any, /#{base_url}/).to_rack(::Fake::FakeApi)
  end
  WebMock.disable_net_connect!(allow: 'codeclimate.com')
end

VALID_CREDENTIALS = {
  identifier: '49fb918d-7e71-44dd-7378-58f19606df2a', token: 'hohoho='
}.freeze

RESULTS = 0
ERROR_MESSAGES = 1

def versioned_api_path
  "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v#{FinAppsCore::REST::Defaults::API_VERSION}"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
finapps-6.13.1 spec/spec_helper.rb
finapps-6.13.0 spec/spec_helper.rb
finapps-6.12.0 spec/spec_helper.rb
finapps-6.11.0 spec/spec_helper.rb
finapps-6.10.2 spec/spec_helper.rb