Sha256: 8ddf0c6f9651366f1e5d9d091c47f6166aa8f7eeb8a7168b4e1c91f0bab5040c
Contents?: true
Size: 544 Bytes
Versions: 234
Compression:
Stored size: 544 Bytes
Contents
#! /usr/bin/env ruby require 'spec_helper' require 'puppet/indirector/certificate_revocation_list/file' describe Puppet::SSL::CertificateRevocationList::File do it "should have documentation" do expect(Puppet::SSL::CertificateRevocationList::File.doc).to be_instance_of(String) end it "should always store the file to :hostcrl location" do crl = File.expand_path("/host/crl") Puppet[:hostcrl] = crl Puppet.settings.stubs(:use) expect(Puppet::SSL::CertificateRevocationList::File.file_location).to eq(crl) end end
Version data entries
234 entries across 234 versions & 1 rubygems