debian-mirror-gitlab/spec/models/work_items/widgets/notes_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
559 B
Ruby
Raw Normal View History

2023-03-04 22:38:38 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe WorkItems::Widgets::Notes, feature_category: :team_planning do
let_it_be(:work_item) { create(:work_item) }
let_it_be(:note) { create(:note, noteable: work_item, project: work_item.project) }
describe '.type' do
it { expect(described_class.type).to eq(:notes) }
end
describe '#type' do
it { expect(described_class.new(work_item).type).to eq(:notes) }
end
describe '#notes' do
it { expect(described_class.new(work_item).notes).to eq(work_item.notes) }
end
end