Takashi Kajinami a6bdabedc7 Unpin modulesync
... to use the recent modulesync which is compatible with Ruby 3.0.

Template files are renamed according to the requirement of modulesync
>= 0.8.0[1]

[1] https://github.com/voxpupuli/modulesync/blob/master/CHANGELOG.md#2017-05-05---080

Depends-on: https://review.opendev.org/845530
Change-Id: I64552b454557f9f33f422f4d64c4c01961aef0e0
2022-08-16 14:05:12 +09:00

16 lines
506 B
Plaintext

require 'puppetlabs_spec_helper/module_spec_helper'
require 'shared_examples'
require 'puppet-openstack_spec_helper/facts'
fixture_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
RSpec.configure do |c|
c.alias_it_should_behave_like_to :it_configures, 'configures'
c.alias_it_should_behave_like_to :it_raises, 'raises'
c.module_path = File.join(fixture_path, 'modules')
c.manifest_dir = File.join(fixture_path, 'manifests')
end
at_exit { RSpec::Puppet::Coverage.report! }