Sha256: 23d08633019db5d9ba667a3e92d38cf16c61c7c56505ef6ee4f0105dd591ee23

Contents?: true

Size: 629 Bytes

Versions: 11

Compression:

Stored size: 629 Bytes

Contents

# frozen_string_literal: true

# This calls the main test_helper in Foreman-core

if ENV['COVERAGE']
  require 'simplecov'

  SimpleCov.start do
    SimpleCov.root('../foreman_fog_proxmox')
    load_profile "test_frameworks"
    add_group 'Controllers', 'app/controllers'
    add_group 'Models', 'app/models'
    add_group 'Helpers', 'app/helpers'
    add_group 'Overrides', 'app/overrides'
    add_group 'Services', 'app/services'
    add_group 'Lib', 'lib'
  end
end

require 'test_helper'

# Add plugin to FactoryBot's paths
FactoryBot.definition_file_paths << File.join(File.dirname(__FILE__), 'factories')
FactoryBot.reload

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
foreman_fog_proxmox-0.16.3 test/test_plugin_helper.rb
foreman_fog_proxmox-0.17.1 test/test_plugin_helper.rb
foreman_fog_proxmox-0.17.0 test/test_plugin_helper.rb
foreman_fog_proxmox-0.16.2 test/test_plugin_helper.rb
foreman_fog_proxmox-0.16.1 test/test_plugin_helper.rb
foreman_fog_proxmox-0.16.0 test/test_plugin_helper.rb
foreman_fog_proxmox-0.15.1 test/test_plugin_helper.rb
foreman_fog_proxmox-0.15.0 test/test_plugin_helper.rb
foreman_fog_proxmox-0.14.3 test/test_plugin_helper.rb
foreman_fog_proxmox-0.14.2 test/test_plugin_helper.rb
foreman_fog_proxmox-0.14.1 test/test_plugin_helper.rb