blob: f2e999e3fb8ab07fa90552dbb9f749fcf30cf419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /usr/bin/env ruby
require '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
reference.to_markdown
end
end
|