Sha256: 36ef8f4cc0fe7c3d57425fc815465c37d430cd5942ec97ca85887342a93feb53

Contents?: true

Size: 526 Bytes

Versions: 8

Compression:

Stored size: 526 Bytes

Contents

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

8 entries across 8 versions & 1 rubygems

Version Path
vedeu-0.8.0 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.7.4 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.7.3 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.7.2 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.7.1 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.7.0 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.6.71 test/support/helpers/presentation_colour_test_class.rb
vedeu-0.6.70 test/support/helpers/presentation_colour_test_class.rb