class Cucumber::CucumberExpressions::Coordinate

Attributes

x[R]
y[R]
z[R]

Public Class Methods

new(x, y, z) click to toggle source
# File spec/cucumber/cucumber_expressions/custom_parameter_type_spec.rb, line 37
def initialize(x, y, z)
  @x, @y, @z = x, y, z
end

Public Instance Methods

==(other) click to toggle source
# File spec/cucumber/cucumber_expressions/custom_parameter_type_spec.rb, line 41
def ==(other)
  other.is_a?(Coordinate) && other.x == x && other.y == y && other.z == z
end