Sha256: c5f68e58eb1286ea676b09933bcff9d32e95f51c913aba5b6928dc6b48469d8e
Contents?: true
Size: 635 Bytes
Versions: 19
Compression:
Stored size: 635 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' describe Puppet::Indirector::FileContent::File do it "should be registered with the file_content indirection" do Puppet::Indirector::Terminus.terminus_class(:file_content, :file).should equal(Puppet::Indirector::FileContent::File) end it "should be a subclass of the DirectFileServer terminus" do Puppet::Indirector::FileContent::File.superclass.should equal(Puppet::Indirector::DirectFileServer) end end
Version data entries
19 entries across 19 versions & 1 rubygems