Parent

Class/Module Index [+]

Quicksearch

Cucumber::Formatter::Debug

Public Class Methods

new(step_mother, io, options) click to toggle source
# File lib/cucumber/formatter/debug.rb, line 7
def initialize(step_mother, io, options)
  @io = io
  @indent = 0
end

Public Instance Methods

method_missing(name, *args) click to toggle source
# File lib/cucumber/formatter/debug.rb, line 16
def method_missing(name, *args)
  @indent -= 2 if name.to_s =~ /^after/
  print(name)
  @indent += 2 if name.to_s =~ /^before/
end
respond_to?(*args) click to toggle source
# File lib/cucumber/formatter/debug.rb, line 12
def respond_to?(*args)
  true
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.