Merge two scenarios into one

This commit is contained in:
Kamil Trzcinski 2016-10-18 16:46:19 +02:00
parent c4e45d89d4
commit 3032a0ca89
1 changed files with 2 additions and 8 deletions

View File

@ -20,11 +20,8 @@ feature 'Environments', feature: true do
end
context 'shows two tabs' do
scenario 'does show Available tab with link' do
scenario 'shows "Available" and "Stopped" tab with links' do
expect(page).to have_link('Available')
end
scenario 'does show Stopped tab with link' do
expect(page).to have_link('Stopped')
end
end
@ -47,11 +44,8 @@ feature 'Environments', feature: true do
expect(page).to have_link(environment.name)
end
scenario 'does show number of opened environments in Available tab' do
scenario 'does show number of available and stopped environments' do
expect(page.find('.js-available-environments-count').text).to eq('1')
end
scenario 'does show number of closed environments in Stopped tab' do
expect(page.find('.js-stopped-environments-count').text).to eq('0')
end