Sha256: 53d2620dd0063d7474810fc6d64757d4be3d88f8688abfff5aabe57d6e8feb8d

Contents?: true

Size: 557 Bytes

Versions: 15

Compression:

Stored size: 557 Bytes

Contents

# frozen_string_literal: true

module Vedeu

  class ParentPresentationColourTestClass

    include Vedeu::Presentation

    attr_reader :colour

    def initialize
      @colour = { background: '#330000', foreground: '#00aadd' }
      @parent = nil
    end

  end # ParentPresentationColourTestClass

  class PresentationColourTestClass

    include Vedeu::Presentation

    attr_reader :parent

    def initialize(attributes = {})
      @colour = attributes[:colour]
      @parent = attributes[:parent]
    end

  end # PresentationTestClass

end # Vedeu

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
vedeu-0.8.16 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.15 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.14 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.13 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.12 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.10 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.9 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.8 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.7 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.6 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.5 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.4 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.3 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.2 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.8.1 test/support/helpers/presentation_colour_test_class.rb