Sha256: 0869e55043de05d1c271be9a98af7383c1eb8e5b995391ca72bb0610e16d2b89
Contents?: true
Size: 521 Bytes
Versions: 278
Compression:
Stored size: 521 Bytes
Contents
#! /usr/bin/env ruby 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 expect(Puppet::Indirector::Terminus.terminus_class(:file_content, :file)).to equal(Puppet::Indirector::FileContent::File) end it "should be a subclass of the DirectFileServer terminus" do expect(Puppet::Indirector::FileContent::File.superclass).to equal(Puppet::Indirector::DirectFileServer) end end
Version data entries
278 entries across 278 versions & 1 rubygems