Class: Cucumber::Core::Test::Location::Wildcard
- Inherits:
-
Struct
- Object
- Struct
- Cucumber::Core::Test::Location::Wildcard
- Defined in:
- lib/cucumber/core/test/location.rb
Instance Attribute Summary collapse
-
#file ⇒ Object
Returns the value of attribute file.
Instance Method Summary collapse
Instance Attribute Details
#file ⇒ Object
Returns the value of attribute file
42 43 44 |
# File 'lib/cucumber/core/test/location.rb', line 42 def file @file end |
Instance Method Details
#include?(_lines) ⇒ Boolean
51 52 53 |
# File 'lib/cucumber/core/test/location.rb', line 51 def include?(_lines) true end |
#match?(other) ⇒ Boolean
47 48 49 |
# File 'lib/cucumber/core/test/location.rb', line 47 def match?(other) other.file == file end |
#to_s ⇒ Object
43 44 45 |
# File 'lib/cucumber/core/test/location.rb', line 43 def to_s file end |