summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/class_attributes_spec.rb
blob: f8766f20495050fe61fa4f58c6d0211261c0e969 (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::ClassAttributes do
  let(:klass) do
    Class.new do
      include Gitlab::ClassAttributes

      def self.get_attribute(name)
        get_class_attribute(name)
      end

      def self.set_attribute(name, value)
        class_attributes[name] = value
      end
    end
  end

  let(:subclass) { Class.new(klass) }

  describe ".get_class_attribute" do
    it "returns values set on the class" do
      klass.set_attribute(:foo, :bar)

      expect(klass.get_attribute(:foo)).to eq(:bar)
    end

    it "returns values set on a superclass" do
      klass.set_attribute(:foo, :bar)

      expect(subclass.get_attribute(:foo)).to eq(:bar)
    end

    it "returns values from the subclass over attributes from a superclass" do
      klass.set_attribute(:foo, :baz)
      subclass.set_attribute(:foo, :bar)

      expect(subclass.get_attribute(:foo)).to eq(:bar)
    end
  end
end