Class: TestLab::User

Inherits:
ZTK::DSL::Base
  • Object
show all
Includes:
Lifecycle
Defined in:
lib/testlab/user.rb,
lib/testlab/user/lifecycle.rb

Overview

User Class

Author:

  • Zachary Patten <zachary AT jovelabs DOT com>

Defined Under Namespace

Modules: Lifecycle

Instance Method Summary collapse

Methods included from Lifecycle

#home_dir, #provision

Constructor Details

#initialize(*args) ⇒ User

Returns a new instance of User.



30
31
32
33
34
35
36
# File 'lib/testlab/user.rb', line 30

def initialize(*args)
  @ui = TestLab.ui

  @ui.logger.debug { "Loading User" }
  super(*args)
  @ui.logger.debug { "User '#{self.id}' Loaded" }
end