Sha256: 07810aaeea26621f148817f8f9fdcf6ac85b0b03f0252d3185ed88b17557fd18
Contents?: true
Size: 532 Bytes
Versions: 92
Compression:
Stored size: 532 Bytes
Contents
#! /usr/bin/env ruby require 'spec_helper' require 'puppet/indirector/certificate_revocation_list/ca' describe Puppet::SSL::CertificateRevocationList::Ca do it "should have documentation" do Puppet::SSL::CertificateRevocationList::Ca.doc.should be_instance_of(String) end it "should use the :cacrl setting as the crl location" do Puppet.settings.stubs(:use) Puppet[:cacrl] = File.expand_path("/request/dir") Puppet::SSL::CertificateRevocationList::Ca.new.path("whatever").should == Puppet[:cacrl] end end
Version data entries
92 entries across 92 versions & 2 rubygems