class NoSE::GroupDSL
A helper class for DSL
creation to allow groups of statements
Attributes
statements[R]
Public Class Methods
new()
click to toggle source
# File lib/nose/workload.rb, line 230 def initialize @statements = [] end
Public Instance Methods
Q(statement)
click to toggle source
Track a new statement to be added @return [void]
# File lib/nose/workload.rb, line 238 def Q(statement) @statements << statement end