# frozen_string_literal: true require 'spec_helper' RSpec.describe Gitlab::GithubImport::Representation::User do shared_examples 'a User' do it 'returns an instance of User' do expect(user).to be_an_instance_of(described_class) end context 'the returned User' do it 'includes the user ID' do expect(user.id).to eq(42) end it 'includes the username' do expect(user.login).to eq('alice') end end end describe '.from_api_response' do it_behaves_like 'a User' do let(:response) { double(:response, id: 42, login: 'alice') } let(:user) { described_class.from_api_response(response) } end end describe '.from_json_hash' do it_behaves_like 'a User' do let(:hash) { { 'id' => 42, 'login' => 'alice' } } let(:user) { described_class.from_json_hash(hash) } end end end