Sha256: b208ab98a9afae81a49a22fb2a491acdac6301864b8ecd94da8b3089aa1d1cfe
Contents?: true
Size: 547 Bytes
Versions: 33
Compression:
Stored size: 547 Bytes
Contents
#!/usr/bin/env rspec require 'spec_helper' require 'puppet/indirector/certificate_revocation_list/file' describe Puppet::SSL::CertificateRevocationList::File do it "should have documentation" do Puppet::SSL::CertificateRevocationList::File.doc.should be_instance_of(String) end it "should always store the file to :hostcrl location" do Puppet.settings.expects(:value).with(:hostcrl).returns "/host/crl" Puppet.settings.stubs(:use) Puppet::SSL::CertificateRevocationList::File.file_location.should == "/host/crl" end end
Version data entries
33 entries across 33 versions & 3 rubygems