Sha256: 92cd28c4fe2a708bde4d12422ea6e17ed7ca91561adbd8dc87c4b97b84bd32ad

Contents?: true

Size: 581 Bytes

Versions: 4

Compression:

Stored size: 581 Bytes

Contents

#! /usr/bin/env ruby -S rspec
require 'spec_helper'
require 'puppet/face'

describe Puppet::Face[:facts, '0.0.1'] do
  it "should define an 'upload' action" do
    subject.should be_action(:upload)
  end

  describe "when uploading" do
    it "should set the terminus_class to :facter"
    it "should set the cache_class to :rest"
    it "should find the current certname"
  end

  describe "#find" do
    it { should be_action :find }

    it "should fail without a key" do
      expect { subject.find }.to raise_error ArgumentError, /wrong number of arguments/
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-3.0.0.rc8 spec/unit/face/facts_spec.rb
puppet-3.0.0.rc7 spec/unit/face/facts_spec.rb
puppet-3.0.0.rc5 spec/unit/face/facts_spec.rb
puppet-3.0.0.rc4 spec/unit/face/facts_spec.rb