about summary refs log tree commit diff
path: root/spec/models/account_tag_stat_spec.rb
blob: 6d3057f3555eb808993d763e4f26edafadc2451c (plain) (blame)
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
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe AccountTagStat, type: :model do
  key = 'accounts_count'
  let(:account_tag_stat) { Fabricate(:tag).account_tag_stat }

  describe '#increment_count!' do
    it 'calls #update' do
      args = { key => account_tag_stat.public_send(key) + 1 }
      expect(account_tag_stat).to receive(:update).with(args)
      account_tag_stat.increment_count!(key)
    end

    it 'increments value by 1' do
      expect do
        account_tag_stat.increment_count!(key)
      end.to change { account_tag_stat.accounts_count }.by(1)
    end
  end

  describe '#decrement_count!' do
    it 'calls #update' do
      args = { key => [account_tag_stat.public_send(key) - 1, 0].max }
      expect(account_tag_stat).to receive(:update).with(args)
      account_tag_stat.decrement_count!(key)
    end

    it 'decrements value by 1' do
      account_tag_stat.update(key => 1)

      expect do
        account_tag_stat.decrement_count!(key)
      end.to change { account_tag_stat.accounts_count }.by(-1)
    end
  end
end