Sha256: 21d562b3bde53a3bb5c061e29c384136a9aca92c1ce17477e22587425df8d5e8
Contents?: true
Size: 756 Bytes
Versions: 92
Compression:
Stored size: 756 Bytes
Contents
#! /usr/bin/env ruby require 'spec_helper' require 'puppet/indirector/certificate/file' describe Puppet::SSL::Certificate::File do it "should have documentation" do Puppet::SSL::Certificate::File.doc.should be_instance_of(String) end it "should use the :certdir as the collection directory" do Puppet[:certdir] = File.expand_path("/cert/dir") Puppet::SSL::Certificate::File.collection_directory.should == Puppet[:certdir] end it "should store the ca certificate at the :localcacert location" do Puppet.settings.stubs(:use) Puppet[:localcacert] = File.expand_path("/ca/cert") file = Puppet::SSL::Certificate::File.new file.stubs(:ca?).returns true file.path("whatever").should == Puppet[:localcacert] end end
Version data entries
92 entries across 92 versions & 2 rubygems