Sha256: b034898f26a6fc739ca17267a32165e3e016c4a05db6b2367e0c944fd710d021
Contents?: true
Size: 465 Bytes
Versions: 292
Compression:
Stored size: 465 Bytes
Contents
require 'spec_helper' require 'puppet/util/windows' describe "Puppet::Util::Windows::RootCerts", :if => Puppet::Util::Platform.windows? do let(:x509_store) { Puppet::Util::Windows::RootCerts.instance.to_a } it "should return at least one X509 certificate" do expect(x509_store.to_a.size).to be >= 1 end it "should return an X509 certificate with a subject" do x509 = x509_store.first expect(x509.subject.to_utf8).to match(/CN=.*/) end end
Version data entries
292 entries across 292 versions & 1 rubygems