summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKeith Pitt <me@keithpitt.com>2015-03-26 11:40:43 +0000
committerKeith Pitt <me@keithpitt.com>2015-03-26 11:40:43 +0000
commit7fdc017650e053ace32b7937c104577db45bf513 (patch)
tree206f26c7d77b8ea5c7435a509245b250e82659e4 /spec
parenteda120dc4d8599e293afec7789847fd22ca0c1b0 (diff)
downloadgitlab-ce-7fdc017650e053ace32b7937c104577db45bf513.tar.gz
Renamed Buildbox to Buildkite.
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_services/buildbox_service_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/models/project_services/buildbox_service_spec.rb b/spec/models/project_services/buildbox_service_spec.rb
index fcbf3e45b9a..9f29fbe12b0 100644
--- a/spec/models/project_services/buildbox_service_spec.rb
+++ b/spec/models/project_services/buildbox_service_spec.rb
@@ -36,7 +36,7 @@ describe BuildboxService do
@service.stub(
project: @project,
service_hook: true,
- project_url: 'https://buildbox.io/account-name/example-project',
+ project_url: 'https://buildkite.com/account-name/example-project',
token: 'secret-sauce-webhook-token:secret-sauce-status-token'
)
end
@@ -44,7 +44,7 @@ describe BuildboxService do
describe :webhook_url do
it 'returns the webhook url' do
expect(@service.webhook_url).to eq(
- 'https://webhook.buildbox.io/deliver/secret-sauce-webhook-token'
+ 'https://webhook.buildkite.com/deliver/secret-sauce-webhook-token'
)
end
end
@@ -52,7 +52,7 @@ describe BuildboxService do
describe :commit_status_path do
it 'returns the correct status page' do
expect(@service.commit_status_path('2ab7834c')).to eq(
- 'https://gitlab.buildbox.io/status/secret-sauce-status-token.json?commit=2ab7834c'
+ 'https://gitlab.buildkite.com/status/secret-sauce-status-token.json?commit=2ab7834c'
)
end
end
@@ -60,7 +60,7 @@ describe BuildboxService do
describe :build_page do
it 'returns the correct build page' do
expect(@service.build_page('2ab7834c', nil)).to eq(
- 'https://buildbox.io/account-name/example-project/builds?commit=2ab7834c'
+ 'https://buildkite.com/account-name/example-project/builds?commit=2ab7834c'
)
end
end
@@ -68,14 +68,14 @@ describe BuildboxService do
describe :builds_page do
it 'returns the correct path to the builds page' do
expect(@service.builds_path).to eq(
- 'https://buildbox.io/account-name/example-project/builds?branch=default-brancho'
+ 'https://buildkite.com/account-name/example-project/builds?branch=default-brancho'
)
end
end
describe :status_img_path do
it 'returns the correct path to the status image' do
- expect(@service.status_img_path).to eq('https://badge.buildbox.io/secret-sauce-status-token.svg')
+ expect(@service.status_img_path).to eq('https://badge.buildkite.com/secret-sauce-status-token.svg')
end
end
end