diff options
| author | Luke Kanies <luke@puppetlabs.com> | 2011-02-22 23:04:45 -0800 |
|---|---|---|
| committer | Luke Kanies <luke@puppetlabs.com> | 2011-02-22 23:04:45 -0800 |
| commit | bec807e5a12e24c11aedb40a997b154f1bed62c0 (patch) | |
| tree | d148005c4339498688116052ffaedc658efccaeb /spec/unit/application/interface_spec.rb | |
| parent | 368210e8a8a35cf2cae509b1d357337f9958cdff (diff) | |
| download | puppet-bec807e5a12e24c11aedb40a997b154f1bed62c0.tar.gz puppet-bec807e5a12e24c11aedb40a997b154f1bed62c0.tar.xz puppet-bec807e5a12e24c11aedb40a997b154f1bed62c0.zip | |
Fixing 'puppet interface list'
Also added a test to hopefully confirm it won't
break again.
Signed-off-by: Luke Kanies <luke@puppetlabs.com>
Diffstat (limited to 'spec/unit/application/interface_spec.rb')
| -rw-r--r-- | spec/unit/application/interface_spec.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/unit/application/interface_spec.rb b/spec/unit/application/interface_spec.rb new file mode 100644 index 000000000..153e9bdc1 --- /dev/null +++ b/spec/unit/application/interface_spec.rb @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby + +require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb') +require 'puppet/application/interface' + +describe Puppet::Application::Interface do + it "should be an application" do + Puppet::Application::Interface.superclass.should equal(Puppet::Application) + end +end |
