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:
authorTomasz Maczukin <tomasz@maczukin.pl>2016-01-13 14:16:27 +0300
committerTomasz Maczukin <tomasz@maczukin.pl>2016-01-13 14:20:59 +0300
commitd44653da1f74c2c15fe7ec3f8aa9b16563ffebd6 (patch)
tree21c24d4e528adf4ff9e9526f85418ea5800b0138 /spec/requests/api/triggers_spec.rb
parente0ec69d919cb44194e76034f2324ec0d4f5f1df6 (diff)
Add some fixes after review
Diffstat (limited to 'spec/requests/api/triggers_spec.rb')
-rw-r--r--spec/requests/api/triggers_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/requests/api/triggers_spec.rb b/spec/requests/api/triggers_spec.rb
index e8d89426ec0..2a86b60bc4d 100644
--- a/spec/requests/api/triggers_spec.rb
+++ b/spec/requests/api/triggers_spec.rb
@@ -105,7 +105,7 @@ describe API::API do
end
end
- context 'unauthentikated user' do
+ context 'unauthenticated user' do
it 'should not return triggers list' do
get api("/projects/#{project.id}/triggers")
@@ -123,7 +123,7 @@ describe API::API do
expect(json_response).to be_a(Hash)
end
- it 'should responde with 404 Not Found if requesting non-existing trigger' do
+ it 'should respond with 404 Not Found if requesting non-existing trigger' do
get api("/projects/#{project.id}/triggers/abcdef012345", user)
expect(response.status).to eq(404)
@@ -138,7 +138,7 @@ describe API::API do
end
end
- context 'unauthentikated user' do
+ context 'unauthenticated user' do
it 'should not return triggers list' do
get api("/projects/#{project.id}/triggers/#{trigger.token}")
@@ -167,7 +167,7 @@ describe API::API do
end
end
- context 'unauthentikated user' do
+ context 'unauthenticated user' do
it 'should not create trigger' do
post api("/projects/#{project.id}/triggers")
@@ -185,7 +185,7 @@ describe API::API do
expect(response.status).to eq(200)
end
- it 'should responde with 404 Not Found if requesting non-existing trigger' do
+ it 'should respond with 404 Not Found if requesting non-existing trigger' do
delete api("/projects/#{project.id}/triggers/abcdef012345", user)
expect(response.status).to eq(404)
@@ -200,7 +200,7 @@ describe API::API do
end
end
- context 'unauthentikated user' do
+ context 'unauthenticated user' do
it 'should not delete trigger' do
delete api("/projects/#{project.id}/triggers/#{trigger.token}")