Method: TestML::Runtime::Unit#title

Defined in:
lib/testml/runtime/unit.rb

#titleObject

XXX Need to disable by default and provide a simple way to turn on.



38
39
40
41
42
43
44
45
# File 'lib/testml/runtime/unit.rb', line 38

def title
  if title = @function.getvar('Title')
    title = title.value
    title = "\n=== #{title} ===\n"
    # TODO Figure out when to print titles.
    # STDERR.write title
  end
end