Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Puppet Camptocamp Postfix
Commits
03cf7bfc
Commit
03cf7bfc
authored
Oct 27, 2014
by
Mickaël Canévet
Browse files
Use modulesync to manage meta files
parent
78e20922
Changes
1
Hide whitespace changes
Inline
Side-by-side
spec/spec_helper.rb
View file @
03cf7bfc
...
...
@@ -23,3 +23,24 @@ RSpec.configure do |c|
PuppetlabsSpec
::
Files
.
cleanup
end
end
require
'pathname'
dir
=
Pathname
.
new
(
__FILE__
).
parent
Puppet
[
:modulepath
]
=
File
.
join
(
dir
,
'fixtures'
,
'modules'
)
# There's no real need to make this version dependent, but it helps find
# regressions in Puppet
#
# 1. Workaround for issue #16277 where default settings aren't initialised from
# a spec and so the libdir is never initialised (3.0.x)
# 2. Workaround for 2.7.20 that now only loads types for the current node
# environment (#13858) so Puppet[:modulepath] seems to get ignored
# 3. Workaround for 3.5 where context hasn't been configured yet,
# ticket https://tickets.puppetlabs.com/browse/MODULES-823
#
ver
=
Gem
::
Version
.
new
(
Puppet
.
version
.
split
(
'-'
).
first
)
if
Gem
::
Requirement
.
new
(
"~> 2.7.20"
)
=~
ver
||
Gem
::
Requirement
.
new
(
"~> 3.0.0"
)
=~
ver
||
Gem
::
Requirement
.
new
(
"~> 3.5"
)
=~
ver
puts
"augeasproviders: setting Puppet[:libdir] to work around broken type autoloading"
# libdir is only a single dir, so it can only workaround loading of one external module
Puppet
[
:libdir
]
=
"
#{
Puppet
[
:modulepath
]
}
/augeasproviders_core/lib"
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment