summaryrefslogtreecommitdiff
path: root/spec/services/projects/prometheus/alerts/destroy_service_spec.rb
blob: a3e9c3516c2fec56948c8a88d055449e3ab71d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Prometheus::Alerts::DestroyService do
  let_it_be(:project) { create(:project) }
  let_it_be(:user) { create(:user) }
  let_it_be(:alert) { create(:prometheus_alert, project: project) }

  let(:service) { described_class.new(project: project, current_user: user, params: nil) }

  describe '#execute' do
    subject { service.execute(alert) }

    it 'deletes the alert' do
      expect(subject).to be_truthy

      expect(alert).to be_destroyed
    end
  end
end