Sha256: 39b0d7323e0089dd2ad7f5cc1c682813478357cb1faacb60f35216e9948bf4fa
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true if ENV['COVERAGE'] == '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_core' require 'webmock/rspec' # noinspection RubyResolve require File.join(File.dirname(__dir__), 'spec/support/fake_api') 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(::FakeApi) end end VALID_CREDENTIALS = {identifier: '49fb918d-7e71-44dd-7378-58f19606df2a', token: 'hohoho='}.freeze
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
finapps_core-6.0.2 | spec/spec_helper.rb |
finapps_core-6.0.1 | spec/spec_helper.rb |
finapps_core-6.0.0 | spec/spec_helper.rb |
finapps_core-5.0.16 | spec/spec_helper.rb |