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