summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile17
1 files changed, 15 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 401002e..ed73446 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,6 +1,7 @@
+require 'rubygems'
+# keep for compatibility for now
+require 'puppetlabs_spec_helper/rake_tasks'
task :tests do
- require 'puppetlabs_spec_helper/rake_tasks'
-
# run syntax checks on manifests, templates and hiera data
# also runs :metadata_lint
Rake::Task[:validate].invoke
@@ -8,3 +9,15 @@ task :tests do
# runs puppet-lint
Rake::Task[:lint].invoke
end
+
+# use librarian-puppet to manage fixtures instead of .fixtures.yml
+# offers more possibilities like explicit version management, forge downloads,...
+task :librarian_spec_prep do
+ sh "librarian-puppet install --path=spec/fixtures/modules/"
+ pwd = `pwd`.strip
+ unless File.directory?("#{pwd}/spec/fixtures/modules/tor")
+ sh "ln -s #{pwd} #{pwd}/spec/fixtures/modules/tor"
+ end
+end
+
+task :spec_prep => :librarian_spec_prep