Sha256: d0217030457df5a41da8c9d51e86e9ebbe2b77f465fb7c7d401011080579e1e6
Contents?: true
Size: 691 Bytes
Versions: 35
Compression:
Stored size: 691 Bytes
Contents
#!/usr/bin/env rspec 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 end
Version data entries
35 entries across 35 versions & 3 rubygems