Commit 61227393 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Rename the other jobs

parent afb1bf0b
...@@ -351,7 +351,7 @@ feature 'Jobs', :feature do ...@@ -351,7 +351,7 @@ feature 'Jobs', :feature do
end end
end end
context "Build from other project" do context "Job from other project" do
before do before do
build.run! build.run!
visit namespace_project_job_path(project.namespace, project, build) visit namespace_project_job_path(project.namespace, project, build)
...@@ -362,7 +362,7 @@ feature 'Jobs', :feature do ...@@ -362,7 +362,7 @@ feature 'Jobs', :feature do
it { expect(page).to have_http_status(404) } it { expect(page).to have_http_status(404) }
end end
context "Build that current user is not allowed to retry" do context "Job that current user is not allowed to retry" do
before do before do
build.run! build.run!
build.cancel! build.cancel!
...@@ -400,7 +400,7 @@ feature 'Jobs', :feature do ...@@ -400,7 +400,7 @@ feature 'Jobs', :feature do
describe 'GET /:project/jobs/:id/raw', :js do describe 'GET /:project/jobs/:id/raw', :js do
context 'access source' do context 'access source' do
context 'build from project' do context 'job from project' do
before do before do
Capybara.current_session.driver.headers = { 'X-Sendfile-Type' => 'X-Sendfile' } Capybara.current_session.driver.headers = { 'X-Sendfile-Type' => 'X-Sendfile' }
build.run! build.run!
...@@ -458,7 +458,7 @@ feature 'Jobs', :feature do ...@@ -458,7 +458,7 @@ feature 'Jobs', :feature do
end end
end end
context 'when build has trace in DB' do context 'when job has trace in DB' do
let(:paths) { [] } let(:paths) { [] }
it 'sends the right headers' do it 'sends the right headers' do
...@@ -483,7 +483,7 @@ feature 'Jobs', :feature do ...@@ -483,7 +483,7 @@ feature 'Jobs', :feature do
end end
describe "GET /:project/jobs/:id/trace.json" do describe "GET /:project/jobs/:id/trace.json" do
context "Build from project" do context "Job from project" do
before do before do
visit trace_namespace_project_job_path(project.namespace, project, build, format: :json) visit trace_namespace_project_job_path(project.namespace, project, build, format: :json)
end end
...@@ -491,7 +491,7 @@ feature 'Jobs', :feature do ...@@ -491,7 +491,7 @@ feature 'Jobs', :feature do
it { expect(page.status_code).to eq(200) } it { expect(page.status_code).to eq(200) }
end end
context "Build from other project" do context "Job from other project" do
before do before do
visit trace_namespace_project_job_path(project.namespace, project, build2, format: :json) visit trace_namespace_project_job_path(project.namespace, project, build2, format: :json)
end end
...@@ -501,7 +501,7 @@ feature 'Jobs', :feature do ...@@ -501,7 +501,7 @@ feature 'Jobs', :feature do
end end
describe "GET /:project/jobs/:id/status" do describe "GET /:project/jobs/:id/status" do
context "Build from project" do context "Job from project" do
before do before do
visit status_namespace_project_job_path(project.namespace, project, build) visit status_namespace_project_job_path(project.namespace, project, build)
end end
...@@ -509,7 +509,7 @@ feature 'Jobs', :feature do ...@@ -509,7 +509,7 @@ feature 'Jobs', :feature do
it { expect(page.status_code).to eq(200) } it { expect(page.status_code).to eq(200) }
end end
context "Build from other project" do context "Job from other project" do
before do before do
visit status_namespace_project_job_path(project.namespace, project, build2) visit status_namespace_project_job_path(project.namespace, project, build2)
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