summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/usage/metrics/instrumentations/count_boards_metric_spec.rb
blob: 52c1ccdcd47966c0ea62796d6458daa1d44a2a6f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Usage::Metrics::Instrumentations::CountBoardsMetric do
  let_it_be(:board) { create(:board) }

  it_behaves_like 'a correct instrumented metric value', { time_frame: 'all', data_source: 'database' }, 1
end