Sha256: c0aa97cc0b5a8490a23c7cb3b217c431da361b7f6666045c3c4ce552bba96cf2

Contents?: true

Size: 636 Bytes

Versions: 5

Compression:

Stored size: 636 Bytes

Contents

require 'simplecov'
require 'pathname'

SimpleCov.use_merging true
SimpleCov.start do
  command_name 'MiniTest'
  add_filter 'test'
end
SimpleCov.root Pathname.new(File.dirname(__FILE__) + "../../../")


require 'minitest/autorun'
require 'minitest/spec'
require "minitest-spec-context"
require "mocha/setup"

require 'hammer_cli'
require 'hammer_cli_foreman/testing/api_expectations'

FOREMAN_VERSION = Gem::Version.new(ENV['TEST_API_VERSION'] || '1.18')

include HammerCLIForeman::Testing::APIExpectations
HammerCLI.context[:api_connection].create('foreman') do
  api_connection({}, FOREMAN_VERSION)
end

require 'hammer_cli_foreman'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hammer_cli_foreman-0.15.0 test/test_helper.rb
hammer_cli_foreman-0.14.0 test/test_helper.rb
hammer_cli_foreman-0.13.2 test/test_helper.rb
hammer_cli_foreman-0.13.1 test/test_helper.rb
hammer_cli_foreman-0.13.0 test/test_helper.rb