summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/auth/activity_spec.rb
blob: 07854cb1eba6420723121d90dd63816cf807bd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'fast_spec_helper'

describe Gitlab::Auth::Activity do
  describe '.each_counter' do
    it 'has all static counters defined' do
      described_class.each_counter do |counter|
        expect(described_class).to respond_to(counter)
      end
    end

    it 'has all static incrementers defined' do
      described_class.each_counter do |counter|
        expect(described_class).to respond_to("#{counter}_increment!")
      end
    end

    it 'has all counters starting with `user_`' do
      described_class.each_counter do |counter|
        expect(counter).to start_with('user_')
      end
    end

    it 'yields counter method, name and description' do
      described_class.each_counter do |method, name, description|
        expect(method).to eq "#{name}_counter"
        expect(description).to start_with('Counter of')
      end
    end
  end
end