blob: 9b4b4d9e98fae3c43ae2ab8f0fb0ec30697b091c (
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 WorkItems::Widgets::Base do
let_it_be(:work_item) { create(:work_item, description: '# Title') }
describe '.type' do
subject { described_class.type }
it { is_expected.to eq(:base) }
end
describe '#type' do
subject { described_class.new(work_item).type }
it { is_expected.to eq(:base) }
end
end
|