Sha256: 46434c32d34cf8f550e5552f40d7c96b996fc0fdc050914ac8d283533e7f6af5
Contents?: true
Size: 601 Bytes
Versions: 33
Compression:
Stored size: 601 Bytes
Contents
#!/usr/bin/env rspec 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(:value).returns "whatever" Puppet.settings.stubs(:use) Puppet.settings.stubs(:value).with(:cacrl).returns "/request/dir" Puppet::SSL::CertificateRevocationList::Ca.new.path("whatever").should == "/request/dir" end end
Version data entries
33 entries across 33 versions & 3 rubygems