Welcome to mirror list, hosted at ThFree Co, Russian Federation.

count_all_ci_builds_metric_spec.rb « instrumentations « metrics « usage « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93814436395a807a8bfabdc6719bae4714e69934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Usage::Metrics::Instrumentations::CountAllCiBuildsMetric, feature_category: :continuous_integration do
  before do
    create(:ci_build, created_at: 5.days.ago)
    create(:ci_build, created_at: 1.year.ago)
  end

  it_behaves_like 'a correct instrumented metric value', { time_frame: 'all', data_source: 'database' } do
    let(:expected_value) { 2 }
  end

  it_behaves_like 'a correct instrumented metric value', { time_frame: '28d', data_source: 'database' } do
    let(:expected_value) { 1 }
  end
end