class Cucumber::Events::GherkinSourceRead
Fired after we’ve read in the contents of a feature file
Attributes
The path to the file
Public Class Methods
Source
# File lib/cucumber/events/gherkin_source_read.rb, line 13 def self.event_id :gherkin_source_read end
Source
# File lib/cucumber/events/gherkin_source_read.rb, line 17 def initialize(path, body) @path = path @body = body super() end
Calls superclass method