Skip to content
Snippets Groups Projects
Commit bc7c6c68 authored by Jose Ivan Vargas Lopez's avatar Jose Ivan Vargas Lopez
Browse files

Fixed more tests

parent 1ee4f986
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -39,10 +39,10 @@ Feature: Project Active Tab
 
# Sub Tabs: Settings
 
Scenario: On Project Settings/Hooks
Scenario: On Project Settings/Integrations
Given I visit my project's settings page
And I click the "Hooks" tab
Then the active sub nav should be Hooks
And I click the "Integrations" tab
Then the active sub nav should be Integrations
And no other sub navs should be active
And the active main tab should be Settings
 
Loading
Loading
Loading
Loading
@@ -27,8 +27,8 @@ class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
end
end
 
step 'I click the "Hooks" tab' do
click_link('Webhooks')
step 'I click the "Integrations" tab' do
click_link('Integrations')
end
 
step 'I click the "Deploy Keys" tab' do
Loading
Loading
@@ -39,8 +39,8 @@ class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
ensure_active_sub_nav('Members')
end
 
step 'the active sub nav should be Hooks' do
ensure_active_sub_nav('Webhooks')
step 'the active sub nav should be Integrations' do
ensure_active_sub_nav('Integrations')
end
 
step 'the active sub nav should be Deploy Keys' do
Loading
Loading
require ('spec_helper')
require('spec_helper')
 
describe Projects::Settings::IntegrationsController do
let(:project) { create(:project, :public) }
Loading
Loading
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