blob: a721d75d804a5dd29fbad15520c13faad2cb923d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env ruby
#
# Created by Luke Kanies on 2007-10-12.
# Copyright (c) 2007. All rights reserved.
require File.expand_path(File.dirname(__FILE__) + '/../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
|