blob: 153e9bdc16d71797ffdf98f09518f9d98be7fca0 (
plain)
1
2
3
4
5
6
7
8
9
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
|