From d8e2cf24a52af0470abd2f9f00892ddd4d206cff Mon Sep 17 00:00:00 2001 From: Dean Reilly Date: Fri, 12 Apr 2013 17:26:26 +0100 Subject: [PATCH] Add spec test for removing proxy configuration. --- spec/classes/apt_spec.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/spec/classes/apt_spec.rb b/spec/classes/apt_spec.rb index d623a5b..a66feac 100644 --- a/spec/classes/apt_spec.rb +++ b/spec/classes/apt_spec.rb @@ -120,7 +120,11 @@ describe 'apt', :type => :class do 'notify' => "Exec[apt_update]" ) else - should_not contain_file('configure_apt_proxy') + should contain_file('configure-apt-proxy').with( + 'path' => '/etc/apt/apt.conf.d/proxy', + 'notify' => 'Exec[apt_update]', + 'ensure' => 'absent' + ) end } end -- 2.45.2