We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f0f3e1 commit 7123306Copy full SHA for 7123306
spec/classes/mod/proxy_http_spec.rb
@@ -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
15
+end
0 commit comments