Commit 3032a0ca authored by Kamil Trzcinski's avatar Kamil Trzcinski

Merge two scenarios into one

parent c4e45d89
...@@ -20,11 +20,8 @@ feature 'Environments', feature: true do ...@@ -20,11 +20,8 @@ feature 'Environments', feature: true do
end end
context 'shows two tabs' do 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') expect(page).to have_link('Available')
end
scenario 'does show Stopped tab with link' do
expect(page).to have_link('Stopped') expect(page).to have_link('Stopped')
end end
end end
...@@ -47,11 +44,8 @@ feature 'Environments', feature: true do ...@@ -47,11 +44,8 @@ feature 'Environments', feature: true do
expect(page).to have_link(environment.name) expect(page).to have_link(environment.name)
end 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') 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') expect(page.find('.js-stopped-environments-count').text).to eq('0')
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment