Welcome to mirror list, hosted at ThFree Co, Russian Federation.

static_site_editor_counter_spec.rb « usage_data_counters « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bf5dad1c9f437976ce2e05caa14fdd74d08653d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::UsageDataCounters::StaticSiteEditorCounter do
  it_behaves_like 'a redis usage counter', 'StaticSiteEditor', :views
  it_behaves_like 'a redis usage counter', 'StaticSiteEditor', :commits
  it_behaves_like 'a redis usage counter', 'StaticSiteEditor', :merge_requests

  it_behaves_like 'a redis usage counter with totals', :static_site_editor,
    views: 3,
    commits: 4,
    merge_requests: 5
end