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:
authorSean McGivern <sean@gitlab.com>2017-04-05 15:29:48 +0300
committerRémy Coutable <remy@rymai.me>2017-04-14 16:20:55 +0300
commit0483019e9800dc1b4ef4493890f815f047b7c04e (patch)
tree24430c787a2e69166ccd214cc1e15a489f32e9e9 /spec/workers/gitlab_usage_ping_worker_spec.rb
parentebd5e9b4549ebc80155a5a8f139efdb40b6f8b12 (diff)
Port 'Add more usage data to EE ping' to CE
CE port of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/735
Diffstat (limited to 'spec/workers/gitlab_usage_ping_worker_spec.rb')
-rw-r--r--spec/workers/gitlab_usage_ping_worker_spec.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/workers/gitlab_usage_ping_worker_spec.rb b/spec/workers/gitlab_usage_ping_worker_spec.rb
index 8c5c027ac29..8821df3d81e 100644
--- a/spec/workers/gitlab_usage_ping_worker_spec.rb
+++ b/spec/workers/gitlab_usage_ping_worker_spec.rb
@@ -3,13 +3,6 @@ require 'spec_helper'
describe GitlabUsagePingWorker do
subject { GitlabUsagePingWorker.new }
- it "gathers license data" do
- data = subject.data
-
- expect(data[:version]).to eq(Gitlab::VERSION)
- expect(data[:active_user_count]).to eq(User.active.count)
- end
-
it "sends POST request" do
stub_application_setting(usage_ping_enabled: true)