From 35160e1033cbdba4f2062fd94df992d06dfdc1e1 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Thu, 18 Jul 2024 20:29:21 +0200 Subject: [PATCH] Switch from allow to expect --- spec/unit/puppet/provider/ssl_pkey/openssl_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/unit/puppet/provider/ssl_pkey/openssl_spec.rb b/spec/unit/puppet/provider/ssl_pkey/openssl_spec.rb index 4636b0f..dc22dca 100644 --- a/spec/unit/puppet/provider/ssl_pkey/openssl_spec.rb +++ b/spec/unit/puppet/provider/ssl_pkey/openssl_spec.rb @@ -42,7 +42,7 @@ it 'creates with given password' do resource[:password] = '2x$5{' allow(OpenSSL::PKey::RSA).to receive(:new).with(2048).and_return(key) - allow(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') + expect(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') expect(File).to receive(:write).with('/tmp/foo.key', kind_of(String)) resource.provider.create end @@ -72,7 +72,7 @@ resource[:authentication] = :rsa resource[:password] = '2x$5{' allow(OpenSSL::PKey::RSA).to receive(:new).with(2048).and_return(key) - allow(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') + expect(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') expect(File).to receive(:write).with('/tmp/foo.key', kind_of(String)) resource.provider.create end @@ -102,7 +102,7 @@ resource[:authentication] = :dsa resource[:password] = '2x$5{' allow(OpenSSL::PKey::DSA).to receive(:new).with(2048).and_return(key) - allow(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') + expect(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') expect(File).to receive(:write).with('/tmp/foo.key', kind_of(String)) resource.provider.create end @@ -134,7 +134,7 @@ resource[:authentication] = :ec resource[:password] = '2x$5{' allow(OpenSSL::PKey::EC).to receive(:new).with('secp384r1').and_return(key) - allow(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') + expect(OpenSSL::Cipher).to receive(:new).with('aes-256-cbc') expect(File).to receive(:write).with('/tmp/foo.key', kind_of(String)) resource.provider.create end