From 1020ff8b08450f3d5533e9d1f61f95e3b3fc5470 Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Wed, 30 Oct 2013 13:00:10 -0400 Subject: [PATCH] fix interpolation of #{system} in test output --- spec/classes/ntp_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/classes/ntp_spec.rb b/spec/classes/ntp_spec.rb index b1cceb6ad..5535d9b25 100644 --- a/spec/classes/ntp_spec.rb +++ b/spec/classes/ntp_spec.rb @@ -13,7 +13,7 @@ it { should include_class('ntp::config') } it { should include_class('ntp::service') } - describe 'ntp::config on #{system}' do + describe "ntp::config on #{system}" do it { should contain_file('/etc/ntp.conf').with_owner('0') } it { should contain_file('/etc/ntp.conf').with_group('0') } it { should contain_file('/etc/ntp.conf').with_mode('0644') } @@ -96,7 +96,7 @@ end end - describe 'ntp::install on #{system}' do + describe "ntp::install on #{system}" do let(:params) {{ :package_ensure => 'present', :package_name => ['ntp'], }} it { should contain_package('ntp').with(