summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/certificate_revocation_list/ca_spec.rb
blob: d76373b97dd8e4644b9cc4c0f942d745403b859e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env rspec
#
#  Created by Luke Kanies on 2008-3-7.
#  Copyright (c) 2007. All rights reserved.

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