Sha256: 7c34ccd831b942669181af6eb4af8d1e9234deb6c0a6d2234f5dd23be03a7260
Contents?: true
Size: 655 Bytes
Versions: 19
Compression:
Stored size: 655 Bytes
Contents
#!/usr/bin/env ruby # # Created by Luke Kanies on 2007-10-18. # Copyright (c) 2007. All rights reserved. require File.dirname(__FILE__) + '/../../../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
19 entries across 19 versions & 1 rubygems