Skip to content
Snippets Groups Projects

Add support to configure webhook_timeout in gitlab.yaml

Closed gitlab-qa-bot requested to merge github/fork/wesgurn/master into master
1 file
+ 3
0
Compare changes
  • Side-by-side
  • Inline
@@ -12,6 +12,10 @@ class ProjectIssues < Spinach::FeatureSteps
page.should_not have_content "Release 0.3"
end
And 'I should not see "Tweet control" in issues' do
page.should_not have_content "Tweet control"
end
Given 'I click link "Closed"' do
click_link "Closed"
end
@@ -56,16 +60,16 @@ class ProjectIssues < Spinach::FeatureSteps
page.should have_content issue.project.name
end
Given 'I fill in issue search with "Release"' do
fill_in 'issue_search', with: "Release"
Given 'I fill in issue search with "Re"' do
fill_in 'issue_search', with: "Re"
end
Given 'I fill in issue search with "Bug"' do
fill_in 'issue_search', with: "Bug"
Given 'I fill in issue search with "Bu"' do
fill_in 'issue_search', with: "Bu"
end
And 'I fill in issue search with "0.3"' do
fill_in 'issue_search', with: "0.3"
And 'I fill in issue search with ".3"' do
fill_in 'issue_search', with: ".3"
end
And 'I fill in issue search with "Something"' do
@@ -120,6 +124,14 @@ class ProjectIssues < Spinach::FeatureSteps
author: project.users.first)
end
And 'project "Shop" have "Tweet control" open issue' do
project = Project.find_by_name("Shop")
create(:issue,
title: "Tweet control",
project: project,
author: project.users.first)
end
And 'project "Shop" have "Release 0.3" closed issue' do
project = Project.find_by_name("Shop")
create(:closed_issue,
Loading