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 a0a21d4 commit cdb58beCopy full SHA for cdb58be
spec/acceptance/mod_php_spec.rb
@@ -27,6 +27,10 @@ class { 'apache::mod::php': }
27
describe file("#{apache_hash['mod_dir']}/php7.0.conf") do
28
it { is_expected.to contain 'DirectoryIndex index.php' }
29
end
30
+ elsif (os[:family] == 'debian' && os[:release] =~ %r{10})
31
+ describe file("#{apache_hash['mod_dir']}/php7.3.conf") do
32
+ it { is_expected.to contain 'DirectoryIndex index.php' }
33
+ end
34
elsif os[:family] == 'ubuntu' && os[:release] == '18.04'
35
describe file("#{apache_hash['mod_dir']}/php7.2.conf") do
36
0 commit comments