summaryrefslogtreecommitdiff
path: root/spec/models/resource_event_spec.rb
blob: f40c192ab2bd4322ac675fc74d14ffa7d60de1f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ResourceEvent, feature_category: :team_planing, type: :model do
  let(:dummy_resource_label_event_class) do
    Class.new(ResourceEvent) do
      self.table_name = 'resource_label_events'
    end
  end

  it 'raises error on not implemented `issuable` method' do
    expect { dummy_resource_label_event_class.new.issuable }.to raise_error(NoMethodError)
  end

  it 'raises error on not implemented `synthetic_note_class` method' do
    expect { dummy_resource_label_event_class.new.synthetic_note_class }.to raise_error(NoMethodError)
  end
end