Class: Cucumber::FileSpecs::FileSpec
- Defined in:
- lib/cucumber/file_specs.rb
Instance Attribute Summary collapse
-
#file ⇒ Object
readonly
Returns the value of attribute file.
Instance Method Summary collapse
-
#initialize(s) ⇒ FileSpec
constructor
A new instance of FileSpec.
- #locations ⇒ Object
Constructor Details
#initialize(s) ⇒ FileSpec
23 24 25 26 27 |
# File 'lib/cucumber/file_specs.rb', line 23 def initialize(s) @file, @lines = *FILE_COLON_LINE_PATTERN.match(s).captures Cucumber.logger.debug(" * #{@file}\n") @lines = String(@lines).split(':').map { |line| Integer(line) } end |
Instance Attribute Details
#file ⇒ Object (readonly)
Returns the value of attribute file.
29 30 31 |
# File 'lib/cucumber/file_specs.rb', line 29 def file @file end |
Instance Method Details
#locations ⇒ Object
31 32 33 34 |
# File 'lib/cucumber/file_specs.rb', line 31 def locations return [ Core::Ast::Location.new(@file) ] if @lines.empty? @lines.map { |line| Core::Ast::Location.new(@file, line) } end |