summaryrefslogtreecommitdiff
path: root/spec/lib/api/entities/bulk_imports/entity_spec.rb
blob: ba8a2ddffcb4fa75f1f106cfd835a1a5c8b20443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Entities::BulkImports::Entity do
  let_it_be(:entity) { create(:bulk_import_entity) }

  subject { described_class.new(entity).as_json }

  it 'has the correct attributes' do
    expect(subject).to include(
      :id,
      :bulk_import_id,
      :status,
      :source_full_path,
      :destination_name,
      :destination_slug,
      :destination_namespace,
      :parent_id,
      :namespace_id,
      :project_id,
      :created_at,
      :updated_at,
      :failures,
      :migrate_projects
    )
  end
end