blob: cc4ae8f4c0080d5f01ccb72d28d9d57ebf0a945c (
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.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
|