blob: 27b5b9e3dabe2140f4157bcadcd45ca3f77eae99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env 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
|