@@ -285,6 +285,7 @@ class { 'letsencrypt::plugin::dns_linode':
285285 it do
286286 is_expected . to compile . with_all_deps
287287 is_expected . to contain_letsencrypt__hook ( 'foo.example.com-pre' ) . with_hook_file ( '/etc/letsencrypt/renewal-hooks-puppet/foo.example.com-pre.sh' )
288+ is_expected . to contain_ini_setting ( 'foo.example.com-pre' )
288289 end
289290 end
290291
@@ -295,6 +296,7 @@ class { 'letsencrypt::plugin::dns_linode':
295296 it do
296297 is_expected . to compile . with_all_deps
297298 is_expected . to contain_letsencrypt__hook ( '*.example.com-pre' ) . with_hook_file ( '/etc/letsencrypt/renewal-hooks-puppet/example.com-pre.sh' )
299+ is_expected . to contain_ini_setting ( '*.example.com-pre' )
298300 end
299301 end
300302
@@ -305,6 +307,7 @@ class { 'letsencrypt::plugin::dns_linode':
305307 it do
306308 is_expected . to compile . with_all_deps
307309 is_expected . to contain_letsencrypt__hook ( 'foo.example.com-post' ) . with_hook_file ( '/etc/letsencrypt/renewal-hooks-puppet/foo.example.com-post.sh' )
310+ is_expected . to contain_ini_setting ( 'foo.example.com-post' )
308311 end
309312 end
310313
@@ -315,6 +318,7 @@ class { 'letsencrypt::plugin::dns_linode':
315318 it do
316319 is_expected . to compile . with_all_deps
317320 is_expected . to contain_letsencrypt__hook ( 'foo.example.com-deploy' ) . with_hook_file ( '/etc/letsencrypt/renewal-hooks-puppet/foo.example.com-deploy.sh' )
321+ is_expected . to contain_ini_setting ( 'foo.example.com-deploy' )
318322 end
319323 end
320324 end
@@ -566,6 +570,9 @@ class { 'letsencrypt::plugin::dns_linode':
566570 it { is_expected . to contain_letsencrypt__hook ( 'foo.example.com-pre' ) }
567571 it { is_expected . to contain_letsencrypt__hook ( 'foo.example.com-post' ) }
568572 it { is_expected . to contain_letsencrypt__hook ( 'foo.example.com-deploy' ) }
573+ it { is_expected . to contain_ini_setting ( 'foo.example.com-pre' ) }
574+ it { is_expected . to contain_ini_setting ( 'foo.example.com-post' ) }
575+ it { is_expected . to contain_ini_setting ( 'foo.example.com-deploy' ) }
569576 it { is_expected . to have_letsencrypt__hook_resource_count ( 3 ) }
570577 end
571578 end
0 commit comments