summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/work_item_base_types_importer.rb
blob: 7d652be8d0546ebe52945dd49f73c59f9fe2c4d6 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

RSpec.shared_examples 'work item base types importer' do
  it 'creates all base work item types' do
    # Fixtures need to run on a pristine DB, but the test suite preloads the base types before(:suite)
    WorkItem::Type.delete_all

    expect { subject }.to change(WorkItem::Type, :count).from(0).to(WorkItem::Type::BASE_TYPES.count)
  end
end