debian-mirror-gitlab/spec/models/container_registry/data_repair_detail_spec.rb

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

12 lines
315 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ContainerRegistry::DataRepairDetail, type: :model, feature_category: :container_registry do
let_it_be(:project) { create(:project) }
subject { described_class.new(project: project) }
it { is_expected.to belong_to(:project).required }
end