Class: Cucumber::Core::Test::Location::Wildcard

Inherits:
Struct
  • Object
show all
Defined in:
lib/cucumber/core/test/location.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fileObject

Returns the value of attribute file

Returns:

  • (Object)

    the current value of file



41
42
43
# File 'lib/cucumber/core/test/location.rb', line 41

def file
  @file
end

Instance Method Details

#include?(_lines) ⇒ Boolean

Returns:

  • (Boolean)


50
51
52
# File 'lib/cucumber/core/test/location.rb', line 50

def include?(_lines)
  true
end

#match?(other) ⇒ Boolean

Returns:

  • (Boolean)


46
47
48
# File 'lib/cucumber/core/test/location.rb', line 46

def match?(other)
  other.file == file
end

#to_sObject



42
43
44
# File 'lib/cucumber/core/test/location.rb', line 42

def to_s
  file
end