summaryrefslogtreecommitdiffstats
path: root/spec/integration/reports.rb
blob: 7351c3da16c208881807ac8dc3cec0e0c0e78041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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
    it "should load report types as modules" do
        Puppet::Reports.report(:store).should be_instance_of(Module)
    end
end