Sha256: 2093d079b33aaecac7f9866cd61055111f11eb431590ea6663a54d9f44eee39a
Contents?: true
Size: 1.78 KB
Versions: 30
Compression:
Stored size: 1.78 KB
Contents
# This file was generated by the `rspec --init` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # Require this file using `require "spec_helper"` to ensure that it is only # loaded once. # # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration begin require 'simplecov' SimpleCov.start rescue LoadError end require 'stringio' require 'clamp' require 'ruby_dig' require 'kontena_cli' require 'webmock/rspec' RSpec.configure do |config| config.run_all_when_everything_filtered = true config.filter_run :focus # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = 'random' config.before(:each) do allow(Dir).to receive(:home).and_return('/tmp/') allow(ENV).to receive(:[]).with(anything).and_call_original allow(ENV).to receive(:[]).with('DEBUG').and_call_original Kontena::Cli::Config.reset_instance end config.after(:each) do RSpec::Mocks.space.proxy_for(File).reset RSpec::Mocks.space.proxy_for(Kontena::Cli::Config).reset File.unlink(Kontena::Cli::Config.default_config_filename) if File.exist?(Kontena::Cli::Config.default_config_filename) end config.around(:each) do |example| catch :exit_with_error do begin example.run rescue SystemExit puts "Got SystemExit: #{$!.message} - Exit code: #{$!.status}" end end end config.before(:each) do $stdout = StringIO.new end config.after(:each) do $stdout = STDOUT end end require_relative 'support/client_helpers' require_relative 'support/requirements_helper' require_relative 'support/fixtures_helpers'
Version data entries
30 entries across 30 versions & 1 rubygems