Skip to content

Commit 7123306

Browse files
committed
Add a class test for mod_proxy_http
1 parent 1f0f3e1 commit 7123306

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# frozen_string_literal: true
2+
3+
require 'spec_helper'
4+
5+
describe 'apache::mod::proxy_http' do
6+
on_supported_os.each do |os, os_facts|
7+
context "on #{os}" do
8+
let(:facts) { os_facts }
9+
10+
it { is_expected.to compile.with_all_deps }
11+
it { is_expected.to contain_class('apache::mod::proxy') }
12+
it { is_expected.to contain_apache__mod('proxy_http') }
13+
end
14+
end
15+
end

0 commit comments

Comments
 (0)