CHanged to String Statuses

This commit is contained in:
Tim Zallmann 2017-09-29 11:19:51 +02:00
parent 6c1210d1d2
commit f8ce8d2817
1 changed files with 4 additions and 4 deletions

View File

@ -8,13 +8,13 @@ describe CiStatusHelper do
describe '#ci_icon_for_status' do
it 'renders to correct svg on success' do
expect(helper.ci_icon_for_status(success_commit.status).to_s)
.to have_content('status_success')
expect(helper.ci_icon_for_status('success').to_s)
.to include 'status_success'
end
it 'renders the correct svg on failure' do
expect(helper.ci_icon_for_status(failed_commit.status).to_s)
.to have_content('status_failed')
expect(helper.ci_icon_for_status('failed'.status).to_s)
.to include 'status_failed'
end
end