Skip to content
Snippets Groups Projects
Commit 4840c682 authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Don't capitalize environment name in show page

Upate test to match the new behavior
parent 36fd2e2e
No related branches found
No related tags found
1 merge request!8902Don't capitalize environment name in show page
Pipeline #
......@@ -5,7 +5,7 @@
%div{ class: container_class }
.top-area.adjust
.col-md-9
%h3.page-title= @environment.name.capitalize
%h3.page-title= @environment.name
.col-md-3
.nav-controls
= render 'projects/environments/terminal_button', environment: @environment
......
---
title: Don't capitalize environment name in show page
merge_request:
author:
......@@ -19,6 +19,10 @@
visit_environment(environment)
end
scenario 'shows environment name' do
expect(page).to have_content(environment.name)
end
context 'without deployments' do
scenario 'does show no deployments' do
expect(page).to have_content('You don\'t have any deployments right now.')
......
......@@ -194,7 +194,7 @@
end
scenario 'does create a new pipeline' do
expect(page).to have_content('Production')
expect(page).to have_content('production')
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment