Sha256: a67c42ecfac06d2cf1adc2f492b3a51e18a8c742854caa071f01a9ef3154f119
Contents?: true
Size: 513 Bytes
Versions: 33
Compression:
Stored size: 513 Bytes
Contents
#!/usr/bin/env rspec require 'spec_helper' require 'puppet/indirector/file_content/file' describe Puppet::Indirector::FileContent::File do it "should be registered with the file_content indirection" do Puppet::Indirector::Terminus.terminus_class(:file_content, :file).should equal(Puppet::Indirector::FileContent::File) end it "should be a subclass of the DirectFileServer terminus" do Puppet::Indirector::FileContent::File.superclass.should equal(Puppet::Indirector::DirectFileServer) end end
Version data entries
33 entries across 33 versions & 3 rubygems