Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expose_attribute_spec.rb « representation « github_import « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d40be0e841c1f0ecd4306fafec9079cc0beaa6b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Representation::ExposeAttribute do
  it 'defines a getter method that returns an attribute value' do
    klass = Class.new do
      include Gitlab::GithubImport::Representation::ExposeAttribute

      expose_attribute :number

      attr_reader :attributes

      def initialize
        @attributes = { number: 42 }
      end
    end

    expect(klass.new.number).to eq(42)
  end
end