summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/catalog/yaml_spec.rb
blob: ddaa173c645b7706bb49b61eb55b97fafa043b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env rspec
require 'spec_helper'

require 'puppet/resource/catalog'
require 'puppet/indirector/catalog/yaml'

describe Puppet::Resource::Catalog::Yaml do
  it "should be a subclass of the Yaml terminus" do
    Puppet::Resource::Catalog::Yaml.superclass.should equal(Puppet::Indirector::Yaml)
  end

  it "should have documentation" do
    Puppet::Resource::Catalog::Yaml.doc.should_not be_nil
  end

  it "should be registered with the catalog store indirection" do
    indirection = Puppet::Indirector::Indirection.instance(:catalog)
    Puppet::Resource::Catalog::Yaml.indirection.should equal(indirection)
  end

  it "should have its name set to :yaml" do
    Puppet::Resource::Catalog::Yaml.name.should == :yaml
  end
end