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:
authorRobert Speicher <rspeicher@gmail.com>2016-07-12 01:12:31 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-07-12 18:27:58 +0300
commitadc6ec4a9c78029348ad65a18718f2a245714932 (patch)
tree7937edfeb34536bc690064ffb00f32a6f857fe80 /spec/services/test_hook_service_spec.rb
parent158786caae7d025b2797008926cfd7d519367b87 (diff)
Avoid `describe`-ing symbols in specs
Diffstat (limited to 'spec/services/test_hook_service_spec.rb')
-rw-r--r--spec/services/test_hook_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/test_hook_service_spec.rb b/spec/services/test_hook_service_spec.rb
index f034f251ba4..4f47e89b4b5 100644
--- a/spec/services/test_hook_service_spec.rb
+++ b/spec/services/test_hook_service_spec.rb
@@ -5,7 +5,7 @@ describe TestHookService, services: true do
let(:project) { create :project }
let(:hook) { create :project_hook, project: project }
- describe :execute do
+ describe '#execute' do
it "should execute successfully" do
stub_request(:post, hook.url).to_return(status: 200)
expect(TestHookService.new.execute(hook, user)).to be_truthy