summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/metrics/delta_spec.rb
blob: 718387cdee1785a272c5b34b53de87f09f97e4c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

describe Gitlab::Metrics::Delta do
  let(:delta) { described_class.new }

  describe '#compared_with' do
    it 'returns the delta as a Numeric' do
      expect(delta.compared_with(5)).to eq(5)
    end

    it 'bases the delta on a previously used value' do
      expect(delta.compared_with(5)).to eq(5)
      expect(delta.compared_with(15)).to eq(10)
    end
  end
end