blob: 40e5284e1821f623f287ab0e935a4e0b9c4b8ef9 (
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
|