You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- require 'cucumber/core/events'
-
- module Cucumber
- module Events
- # Fired after we've read in the contents of a feature file
- class GherkinSourceRead < Core::Event.new(:path, :body)
- # The path to the file
- attr_reader :path
-
- # The raw Gherkin source
- attr_reader :body
- end
- end
- end
|