summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/github_import/representation/expose_attribute_spec.rb
blob: 43f0198704f12ffa7d7c4bc44e0352d344fcde38 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::GithubImport::Representation::ExposeAttribute do
  let(:klass) do
    Class.new do
      include Gitlab::GithubImport::Representation::ExposeAttribute

      expose_attribute :number

      attr_reader :attributes

      def initialize(attributes)
        @attributes = attributes
      end
    end
  end

  it 'defines a getter method that returns an attribute value' do
    expect(klass.new({ number: 42 }).number).to eq(42)
  end

  describe '#[]' do
    it 'returns exposed attributes value using array notation' do
      expect(klass.new({ number: 42 })[:number]).to eq(42)
    end

    context 'when attribute does not exist' do
      it 'returns nil' do
        expect(klass.new({})[:number]).to eq(nil)
      end
    end

    context 'when attribute is not exposed' do
      it 'returns nil' do
        expect(klass.new({ not_exposed_attribute: 42 })[:not_exposed_attribute]).to eq(nil)
      end
    end
  end
end