Parent

Class 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
 7:       def initialize(step_mother, io, options)
 8:         @io = io
 9:         @indent = 0
10:       end

Public Instance Methods

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

Private Instance Methods

indent() click to toggle source
    # File lib/cucumber/formatter/debug.rb, line 28
28:       def indent
29:         (' ' * @indent)
30:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.