~ubuntu-branches/ubuntu/trusty/puppet/trusty

« back to all changes in this revision

Viewing changes to spec/unit/ssl/inventory_spec.rb

  • Committer: Package Import Robot
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-10-22 14:08:22 UTC
  • mfrom: (1.1.25) (3.1.32 sid)
  • Revision ID: package-import@ubuntu.com-20111022140822-odxde5lohc45yhuz
Tags: 2.7.6-1
* New upstream release (CVE-2011-3872)
* Remove cherry-picked "groupadd_aix_warning" patch
* Install all new manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
require 'puppet/ssl/inventory'
5
5
 
6
 
describe Puppet::SSL::Inventory do
 
6
describe Puppet::SSL::Inventory, :unless => Puppet.features.microsoft_windows? do
7
7
  before do
8
8
    @class = Puppet::SSL::Inventory
9
9
  end
118
118
      end
119
119
    end
120
120
 
121
 
    describe "and formatting a certificate" do
 
121
    describe "and formatting a certificate", :fails_on_windows => true do
122
122
      before do
123
123
        @cert = stub 'cert', :not_before => Time.now, :not_after => Time.now, :subject => "mycert", :serial => 15
124
124
      end