summaryrefslogtreecommitdiffstats
path: root/spec/unit/face/facts_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/face/facts_spec.rb')
-rwxr-xr-xspec/unit/face/facts_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/unit/face/facts_spec.rb b/spec/unit/face/facts_spec.rb
new file mode 100755
index 000000000..e6411f836
--- /dev/null
+++ b/spec/unit/face/facts_spec.rb
@@ -0,0 +1,20 @@
+#!/usr/bin/env rspec
+require 'spec_helper'
+
+describe Puppet::Face[:facts, '0.0.1'] do
+ it "should define an 'upload' fact" do
+ subject.should be_action(:upload)
+ end
+
+ it "should set its default format to :yaml" do
+ subject.default_format.should == :yaml
+ end
+
+ describe "when uploading" do
+ it "should set the terminus_class to :facter"
+
+ it "should set the cach_eclass to :rest"
+
+ it "should find the current certname"
+ end
+end