Skip to content

Commit 15c96d4

Browse files
committed
(maint) Add basic acceptance test for mod_md
1 parent 3eb6671 commit 15c96d4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

spec/acceptance/mod_md_spec.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
require 'spec_helper_acceptance'
2+
3+
describe 'apache::mod::md' do
4+
pp = <<-MANIFEST
5+
class { 'apache' : }
6+
class { 'apache::mod::md': }
7+
MANIFEST
8+
9+
it 'succeeds in installing the mod_md module' do
10+
apply_manifest(pp, catch_failures: true)
11+
end
12+
end

0 commit comments

Comments
 (0)