Fix rspec 3.x syntax

- Convert 'should' keyword to 'is_expected.to'

Change-Id: I21f861c8b14a44283e2ae0a3d53af6ecc032dcce
Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
This commit is contained in:
Gael Chamoulaud 2015-07-20 16:11:31 +02:00
parent ada3d4f548
commit ae16011eb2
1 changed files with 2 additions and 2 deletions

View File

@ -44,11 +44,11 @@ describe 'horizon class' do
# basic test for now, to make sure Apache serve /horizon dashboard
if os[:family] == 'Debian'
describe command('curl --connect-timeout 5 -sL -w "%{http_code} %{url_effective}\n" http://localhost/horizon/ -o /dev/null') do
it { should return_exit_status 0 }
it { is_expected.to return_exit_status 0 }
end
elsif os[:family] == 'RedHat'
describe command('curl --connect-timeout 5 -sL -w "%{http_code} %{url_effective}\n" http://localhost/dashboard/ -o /dev/null') do
it { should return_exit_status 0 }
it { is_expected.to return_exit_status 0 }
end
end