Files
fuel-plugin-influxdb-grafana/deployment_scripts/puppet/modules/influxdb/Rakefile
Guillaume Thouvenin 53e2344f13 Add initial tests for influxdb module
This change implements the necessary bits and pieces for testing the
influxdb module.

Change-Id: I47ff671b1ca2ca8929071c693758c8706f37661d
2016-01-08 14:40:49 +01:00

26 lines
698 B
Ruby

require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'puppet-syntax/tasks/puppet-syntax'
require 'metadata-json-lint/rake_task'
PuppetLint.configuration.fail_on_warnings = true
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_class_parameter_defaults')
exclude_paths = [
"pkg/**/*",
"vendor/**/*",
"spec/**/*",
]
PuppetLint.configuration.ignore_paths = exclude_paths
PuppetSyntax.exclude_paths = exclude_paths
desc "Run metadata_lint, lint, syntax, and spec tests."
task :test => [
:metadata_lint,
:lint,
:syntax,
:spec,
]