summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/usage_data_counters/static_site_editor_counter_spec.rb
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