Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2017-05-31 22:11:48 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2017-05-31 22:11:48 +0300
commitf06daa26efc127565e4e68ca9d4ac62e5a1e3b36 (patch)
treee212d23f502d60b29d89dc5151d22b246d15d953 /features
parent87e761da9222f277bdc5a638c54d30192abe2779 (diff)
parent61227393dc1bc8240b7e9413a613f7aacdaed2c2 (diff)
Merge branch 'rename-builds-controller' into 'master'
Rename BuildsController to JobsController Closes #30699 See merge request !11407
Diffstat (limited to 'features')
-rw-r--r--features/steps/shared/builds.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/shared/builds.rb b/features/steps/shared/builds.rb
index 5549fc25525..624f1a7858b 100644
--- a/features/steps/shared/builds.rb
+++ b/features/steps/shared/builds.rb
@@ -27,11 +27,11 @@ module SharedBuilds
end
step 'I visit recent build details page' do
- visit namespace_project_build_path(@project.namespace, @project, @build)
+ visit namespace_project_job_path(@project.namespace, @project, @build)
end
step 'I visit project builds page' do
- visit namespace_project_builds_path(@project.namespace, @project)
+ visit namespace_project_jobs_path(@project.namespace, @project)
end
step 'recent build has artifacts available' do
@@ -56,7 +56,7 @@ module SharedBuilds
end
step 'I access artifacts download page' do
- visit download_namespace_project_build_artifacts_path(@project.namespace, @project, @build)
+ visit download_namespace_project_job_artifacts_path(@project.namespace, @project, @build)
end
step 'I see details of a build' do