summaryrefslogtreecommitdiffstats
path: root/spec/integration/reference/providers_spec.rb
blob: 23b22aae1c07cb362c2f8cbd709de313eddb2612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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
    lambda { reference.to_markdown }.should_not raise_error
  end
end