summaryrefslogtreecommitdiff
path: root/spec/services/projects/prometheus/metrics/destroy_service_spec.rb
blob: b4af81f2c873bfca6d3b70a13f609faa9afcb5f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Prometheus::Metrics::DestroyService do
  let(:metric) { create(:prometheus_metric) }

  subject { described_class.new(metric) }

  it 'destroys metric' do
    subject.execute

    expect(PrometheusMetric.find_by(id: metric.id)).to be_nil
  end
end