summaryrefslogtreecommitdiff
path: root/spec/models/work_item_spec.rb
blob: 2fa1abda44ab624419db0828ef948a7baa97c9ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe WorkItem do
  describe '#noteable_target_type_name' do
    it 'returns `issue` as the target name' do
      work_item = build(:work_item)

      expect(work_item.noteable_target_type_name).to eq('issue')
    end
  end
end