summaryrefslogtreecommitdiff
path: root/spec/serializers/import/gitlab_provider_repo_entity_spec.rb
blob: 3f862c16fe217f5207e315d6eabd77054f56d3d9 (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
# frozen_string_literal: true

require 'spec_helper'

describe Import::GitlabProviderRepoEntity do
  let(:repo_data) do
    {
      'id' => 1,
      'path_with_namespace' => 'demo/test',
      'path' => 'test',
      'web_url' => 'https://gitlab.com/demo/test'
    }
  end

  subject { described_class.new(repo_data).as_json }

  it_behaves_like 'exposes required fields for import entity' do
    let(:expected_values) do
      {
        id: 1,
        full_name: 'demo/test',
        sanitized_name: 'test',
        provider_link: 'https://gitlab.com/demo/test'
      }
    end
  end
end