Sha256: 79f4631d4338d46b982d3b86214f128537f7a021d144dbc9afe3e97762712f3d
Contents?: true
Size: 814 Bytes
Versions: 85
Compression:
Stored size: 814 Bytes
Contents
#! /usr/bin/env ruby require 'spec_helper' require 'puppet/indirector/certificate_revocation_list/rest' describe Puppet::SSL::CertificateRevocationList::Rest do before do @searcher = Puppet::SSL::CertificateRevocationList::Rest.new end it "should be a sublcass of Puppet::Indirector::REST" do Puppet::SSL::CertificateRevocationList::Rest.superclass.should equal(Puppet::Indirector::REST) end it "should set server_setting to :ca_server" do Puppet::SSL::CertificateRevocationList::Rest.server_setting.should == :ca_server end it "should set port_setting to :ca_port" do Puppet::SSL::CertificateRevocationList::Rest.port_setting.should == :ca_port end it "should use the :ca SRV service" do Puppet::SSL::CertificateRevocationList::Rest.srv_service.should == :ca end end
Version data entries
85 entries across 85 versions & 2 rubygems