Sha256: cfcb21b57619df29cfef3d5f937d9c06517898e2ce7a17dacb97006a81d1d42d

Contents?: true

Size: 767 Bytes

Versions: 5

Compression:

Stored size: 767 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/minitest"

require 'hammer_cli'
require 'hammer_cli/testing/command_assertions'
require 'hammer_cli_foreman/testing/api_expectations'
FOREMAN_VERSION = Gem::Version.new(ENV['TEST_API_VERSION'] || '3.0')

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

require 'hammer_cli_foreman'
require 'hammer_cli_foreman_puppet'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hammer_cli_foreman_puppet-0.0.5 test/test_helper.rb
hammer_cli_foreman_puppet-0.0.4 test/test_helper.rb
hammer_cli_foreman_puppet-0.0.3 test/test_helper.rb
hammer_cli_foreman_puppet-0.0.2 test/test_helper.rb
hammer_cli_foreman_puppet-0.0.1 test/test_helper.rb