summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/phabricator_import/representation/user_spec.rb
blob: f52467a0cf1a1253ff342eef4f76a874d86ff625 (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'

describe Gitlab::PhabricatorImport::Representation::User do
  subject(:user) do
    described_class.new(
      {
        'phid' => 'the-phid',
        'fields' => {
          'username' => 'the-username'
        }
      }
    )
  end

  describe '#phabricator_id' do
    it 'returns the phabricator id' do
      expect(user.phabricator_id).to eq('the-phid')
    end
  end

  describe '#username' do
    it 'returns the username' do
      expect(user.username).to eq('the-username')
    end
  end
end