diff --git a/test/integration/deb/controls/letsencrypt_spec.rb b/test/integration/deb/controls/letsencrypt_spec.rb index 7906b1c..22f300e 100644 --- a/test/integration/deb/controls/letsencrypt_spec.rb +++ b/test/integration/deb/controls/letsencrypt_spec.rb @@ -10,7 +10,9 @@ it { should be_grouped_into 'root' } it { should be_readable } its('size') { should be > 1 } - its('content') { should match 'server = https://acme-staging.api.letsencrypt.org/directory' } + its('content') do + should match 'server = https://acme-staging.api.letsencrypt.org/directory' + end its('content') { should match 'authenticator = webroot' } end @@ -42,5 +44,7 @@ it { should be_grouped_into 'root' } it { should be_readable } its('size') { should be > 1 } - its('content') { should match 'deb http://deb.debian.org/debian stretch-backports main' } + its('content') do + should match 'deb http://deb.debian.org/debian stretch-backports main' + end end diff --git a/test/integration/git/controls/letsencrypt_spec.rb b/test/integration/git/controls/letsencrypt_spec.rb index 71a644f..aee0b47 100644 --- a/test/integration/git/controls/letsencrypt_spec.rb +++ b/test/integration/git/controls/letsencrypt_spec.rb @@ -14,6 +14,8 @@ it { should be_grouped_into 'root' } it { should be_readable } its('size') { should be > 1 } - its('content') { should match 'server = https://acme-staging.api.letsencrypt.org/directory' } + its('content') do + should match 'server = https://acme-staging.api.letsencrypt.org/directory' + end its('content') { should match 'authenticator = standalone' } end diff --git a/test/integration/rpm/controls/letsencrypt_spec.rb b/test/integration/rpm/controls/letsencrypt_spec.rb index ee6184b..e54af7c 100644 --- a/test/integration/rpm/controls/letsencrypt_spec.rb +++ b/test/integration/rpm/controls/letsencrypt_spec.rb @@ -11,7 +11,9 @@ it { should be_readable } its('size') { should be > 1 } - its('content') { should match 'server = https://acme-staging.api.letsencrypt.org/directory' } + its('content') do + should match 'server = https://acme-staging.api.letsencrypt.org/directory' + end its('content') { should match 'authenticator = webroot' } end