Class: TestLab::User
- Inherits:
-
ZTK::DSL::Base
- Object
- ZTK::DSL::Base
- TestLab::User
- Includes:
- Lifecycle
- Defined in:
- lib/testlab/user.rb,
lib/testlab/user/lifecycle.rb
Overview
User Class
Defined Under Namespace
Modules: Lifecycle
Instance Method Summary collapse
-
#initialize(*args) ⇒ User
constructor
A new instance of User.
Methods included from Lifecycle
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 |