Sha256: 16a92cb93d6a23a90c49918b6dc632e6987def3ac6d47db5de4c32253bf4d465

Contents?: true

Size: 636 Bytes

Versions: 6

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.15')

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

require 'hammer_cli_foreman'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hammer_cli_foreman-0.12.1 test/test_helper.rb
hammer_cli_foreman-0.12.0 test/test_helper.rb
hammer_cli_foreman-0.11.0 test/test_helper.rb
hammer_cli_foreman-0.10.2 test/test_helper.rb
hammer_cli_foreman-0.10.1 test/test_helper.rb
hammer_cli_foreman-0.10.0 test/test_helper.rb