puppet-httpd/spec/classes/python_spec.rb
William Van Hevelingen 05fcec5f9c (#13073) Add missing puppet spec tests
This commit adds full puppet spec coverage
for all classes and defines.
2012-03-16 00:38:53 -07:00

14 lines
300 B
Ruby

require 'spec_helper'
describe 'apache::python', :type => :class do
it { should include_class("apache") }
it { should include_class("apache::params") }
it { should contain_package("apache_python_package") }
it { should contain_a2mod("python").with(
'ensure' => 'present'
)
}
end