blob: ce2cf790553c8cf0c9fd963a19f29614b3f84154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/usr/bin/env ruby
Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") }
require 'puppet/reports'
processor = Puppet::Reports.report(:rrdgraph)
describe processor do
include PuppetSpec::Files
before do
Puppet[:rrddir] = tmpdir('rrdgraph')
Puppet.settings.use :master
end
after do
FileUtils.rm_rf(Puppet[:rrddir])
end
it "should not error on 0.25.x report format" do
report = YAML.load_file(File.join(PuppetSpec::FIXTURE_DIR, 'yaml/report0.25.x.yaml')).extend processor
report.expects(:mkhtml)
lambda{ report.process }.should_not raise_error
end
it "should not error on 2.6.x report format" do
report = YAML.load_file(File.join(PuppetSpec::FIXTURE_DIR, 'yaml/report2.6.x.yaml')).extend processor
report.expects(:mkhtml)
lambda{ report.process }.should_not raise_error
end
end
|