fuel-plugin-zabbix-snmptrapd/deployment_scripts/puppet/modules/plugin_zabbix_snmptrapd/Rakefile

18 lines
519 B
Ruby

require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'puppet-syntax/tasks/puppet-syntax'
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')
PuppetLint.configuration.send('disable_autoloader_layout')
desc "Run lint, and syntax and spec tests."
task :test => [
:lint,
:syntax,
:spec,
]