Parent

Methods

Class Index [+]

Quicksearch

Cucumber::StepDefinitionLight

Only used for keeping track of available and invoked step definitions in a way that also works for other programming languages (i.e. cuke4duke) Used for reporting purposes only (usage formatter).

Attributes

regexp_source[R]
file_colon_line[R]

Public Class Methods

new(regexp_source, file_colon_line) click to toggle source
    # File lib/cucumber/step_definition_light.rb, line 8
 8:     def initialize(regexp_source, file_colon_line)
 9:       @regexp_source, @file_colon_line = regexp_source, file_colon_line
10:     end

Public Instance Methods

eql?(o) click to toggle source
    # File lib/cucumber/step_definition_light.rb, line 12
12:     def eql?(o)
13:       regexp_source == o.regexp_source && file_colon_line == o.file_colon_line
14:     end
hash() click to toggle source
    # File lib/cucumber/step_definition_light.rb, line 16
16:     def hash
17:       regexp_source.hash + 31*file_colon_line.hash
18:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.