class TestML::Library::Debug

TODO Either require or duplicate wxyz.rb here

Public Instance Methods

XXX(*args) click to toggle source
# File lib/testml/library/debug.rb, line 5
def XXX(*args)
  require 'yaml'
  args.each {|node| puts YAML.dump(node)}
  puts 'XXX from: ' + caller.first
  exit
end
YYY(*args) click to toggle source
# File lib/testml/library/debug.rb, line 12
def YYY(*args)
  require 'yaml'
  args.each {|node| puts YAML.dump(node)}
  puts 'YYY from: ' + caller.first
  return *args
end