summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorMatt Robinson <matt@puppetlabs.com>2011-05-26 17:09:33 -0700
committerMatt Robinson <matt@puppetlabs.com>2011-05-26 17:09:33 -0700
commit78355f7be66dc134aa774a91a124c30ca3755997 (patch)
tree5f818f850fceec249a9fab24a2299388e84ea1d3 /spec
parent3c0483fad82d3c5650b8c283f134c043e9074649 (diff)
parenta5a78a52bb2345759f5703554e17e08703bca01e (diff)
Merge branch 'ticket/2.7rc/7557-remove_faces_application' into 2.7rc
* ticket/2.7rc/7557-remove_faces_application: (#7557) Remove Faces Application
Diffstat (limited to 'spec')
-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