summaryrefslogtreecommitdiffstats
path: root/spec/unit/application
diff options
context:
space:
mode:
authorMatt Robinson <matt@puppetlabs.com>2011-05-26 17:05:28 -0700
committerMatt Robinson <matt@puppetlabs.com>2011-05-26 17:05:28 -0700
commita5a78a52bb2345759f5703554e17e08703bca01e (patch)
tree5f818f850fceec249a9fab24a2299388e84ea1d3 /spec/unit/application
parent3c0483fad82d3c5650b8c283f134c043e9074649 (diff)
downloadpuppet-a5a78a52bb2345759f5703554e17e08703bca01e.tar.gz
puppet-a5a78a52bb2345759f5703554e17e08703bca01e.tar.xz
puppet-a5a78a52bb2345759f5703554e17e08703bca01e.zip
(#7557) Remove Faces Application
It used to be that to list the faces available and their actions and options, you had this legacy based face application. This functionality has all been moved into the puppet help face application. Reviewed-by: Daniel Pittman <daniel@puppetlabs.com>
Diffstat (limited to 'spec/unit/application')
-rwxr-xr-xspec/unit/application/faces_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/unit/application/faces_spec.rb b/spec/unit/application/faces_spec.rb
deleted file mode 100755
index cc159b6a5..000000000
--- a/spec/unit/application/faces_spec.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env rspec
-require 'spec_helper'
-require 'puppet/application/faces'
-
-describe Puppet::Application::Faces do
- it "should be an application" do
- Puppet::Application::Faces.superclass.should equal(Puppet::Application)
- end
-
- it "should always call 'list'" do
- subject.expects(:list)
- subject.main
- end
-end