summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/metrics_spec.rb
blob: 944642909aaea0f539ddb36a9999612949ebd45f (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
31
32
33
34
35
36
require 'spec_helper'

describe Gitlab::Metrics do
  describe '.pool_size' do
    it 'returns a Fixnum' do
      expect(described_class.pool_size).to be_an_instance_of(Fixnum)
    end
  end

  describe '.timeout' do
    it 'returns a Fixnum' do
      expect(described_class.timeout).to be_an_instance_of(Fixnum)
    end
  end

  describe '.enabled?' do
    it 'returns a boolean' do
      expect([true, false].include?(described_class.enabled?)).to eq(true)
    end
  end

  describe '.hostname' do
    it 'returns a String containing the hostname' do
      expect(described_class.hostname).to eq(Socket.gethostname)
    end
  end

  describe '.last_relative_application_frame' do
    it 'returns an Array containing a file path and line number' do
      file, line = described_class.last_relative_application_frame

      expect(line).to eq(__LINE__ - 2)
      expect(file).to eq('spec/lib/gitlab/metrics_spec.rb')
    end
  end
end