summaryrefslogtreecommitdiffstats
path: root/spec/unit/application/config_spec.rb
blob: 066df6a51c7b5384e3c3e8fb3fac411985d4e6e7 (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/config'

describe Puppet::Application::Config do
  it "should be a subclass of Puppet::Application::FacesBase" do
    Puppet::Application::Config.superclass.should equal(Puppet::Application::FacesBase)
  end
end