class LeanTesting::Bug

Attributes

attachments[R]
comments[R]

Public Class Methods

new(origin, data) click to toggle source
Calls superclass method LeanTesting::Entity::new
# File lib/Entity/Bug/Bug.rb, line 5
def initialize(origin, data)
        super

        @comments           = BugCommentsHandler.new(origin, data['id'])
        @attachments        = BugAttachmentsHandler.new(origin, data['id'])
end