Sha256: 5fda7c4de885e7a573b0f895ce96d9d5fa7391fe51c2b947ba4754d57b536481
Contents?: true
Size: 533 Bytes
Versions: 92
Compression:
Stored size: 533 Bytes
Contents
#! /usr/bin/env ruby 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
92 entries across 92 versions & 2 rubygems