blob: 17662c8101fcb0c20f85ac5a5d17c217f4624e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env rspec
require 'spec_helper'
require 'puppet/reports'
describe Puppet::Reports, " when using report types" do
before do
Puppet.settings.stubs(:use)
end
it "should load report types as modules" do
Puppet::Reports.report(:store).should be_instance_of(Module)
end
end
|