461ed3c7a6
This change includes an initial set of unit tests for the cluster puppet module. Change-Id: Ie151ee13006ba1ea6591d95cb5bae3147086bdb8 Related-Bug: #1507751
23 lines
848 B
Ruby
23 lines
848 B
Ruby
require 'puppetlabs_spec_helper/rake_tasks'
|
|
require 'puppet-lint/tasks/puppet-lint'
|
|
require 'puppet-syntax/tasks/puppet-syntax'
|
|
|
|
PuppetSyntax.exclude_paths ||= []
|
|
PuppetSyntax.exclude_paths << "spec/fixtures/**/*"
|
|
PuppetSyntax.exclude_paths << "pkg/**/*"
|
|
PuppetSyntax.exclude_paths << "vendor/**/*"
|
|
|
|
Rake::Task[:lint].clear
|
|
PuppetLint::RakeTask.new :lint do |config|
|
|
config.ignore_paths = ["spec/**/*.pp", "vendor/**/*.pp"]
|
|
config.fail_on_warnings = false # TODO(aschultz): fix warnings
|
|
config.log_format = '%{path}:%{linenumber}:%{KIND}: %{message}'
|
|
config.disable_checks = [
|
|
"80chars",
|
|
"class_inherits_from_params_class",
|
|
"class_parameter_defaults",
|
|
"only_variable_string",
|
|
"autoloader_layout", # TODO(aschultz): this is from included defines in classes, should be fixed and this should be removed.
|
|
]
|
|
end
|