Sha256: 951daa8508f35eb6338d189f9037a2fd7f34cc0b0e8514f099f9b891f79fe215
Contents?: true
Size: 737 Bytes
Versions: 35
Compression:
Stored size: 737 Bytes
Contents
#!/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
Version data entries
35 entries across 35 versions & 3 rubygems