diff options
author | varac <varacanero@zeromail.org> | 2016-11-03 01:13:30 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-11-03 01:22:17 +0100 |
commit | f4af02ee7a6d4d071506642bec1401662d1da964 (patch) | |
tree | 35fc5cef2f4e66582525df1c555f44706dcfdf83 /Rakefile | |
parent | 039c63890c58b1d7bd637202fa5f86ff52b49ec1 (diff) | |
download | puppet-common-f4af02ee7a6d4d071506642bec1401662d1da964.tar.gz puppet-common-f4af02ee7a6d4d071506642bec1401662d1da964.tar.bz2 |
Add rspec skeleton
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..85326bb --- /dev/null +++ b/Rakefile @@ -0,0 +1,19 @@ +require 'puppetlabs_spec_helper/rake_tasks' +require 'puppet-lint/tasks/puppet-lint' +PuppetLint.configuration.send('disable_80chars') +PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"] + +desc "Validate manifests, templates, and ruby files" +task :validate do + Dir['manifests/**/*.pp'].each do |manifest| + sh "puppet parser validate --noop #{manifest}" + end + Dir['spec/**/*.rb','lib/**/*.rb'].each do |ruby_file| + sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/ + end + Dir['templates/**/*.erb'].each do |template| + sh "erb -P -x -T '-' #{template} | ruby -c" + end +end + +task :test => [:lint, :syntax , :validate, :spec] |