class Cucumber::Core::Test::Location::Wildcard

Public Instance Methods

include?(lines) click to toggle source
# File lib/cucumber/core/test/location.rb, line 49
def include?(lines)
  true
end
match?(other) click to toggle source
# File lib/cucumber/core/test/location.rb, line 45
def match?(other)
  other.file == file
end
to_s() click to toggle source
# File lib/cucumber/core/test/location.rb, line 41
def to_s
  file
end