Sha256: 895ae345010e78de85fe0cef15a99f5455e51c87c6d04e96399d3183062051e2
Contents?: true
Size: 541 Bytes
Versions: 278
Compression:
Stored size: 541 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 expect(Puppet::Indirector::Terminus.terminus_class(:file_content, :file_server)).to equal(Puppet::Indirector::FileContent::FileServer) end it "should be a subclass of the FileServer terminus" do expect(Puppet::Indirector::FileContent::FileServer.superclass).to equal(Puppet::Indirector::FileServer) end end
Version data entries
278 entries across 278 versions & 1 rubygems