blob: d6e19cb590d94fd1c1b28436e7e901b95b082c04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env ruby
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
require 'puppet/util/reference'
reference = Puppet::Util::Reference.reference(:providers)
describe reference do
it "should exist" do
reference.should_not be_nil
end
it "should be able to be rendered as markdown" do
lambda { reference.to_markdown }.should_not raise_error
end
end
|