class Cucumber::MultilineArgument::DataTable::Cell
Attributes
Public Class Methods
Source
# File lib/cucumber/multiline_argument/data_table.rb, line 578 def initialize(value, table, line) @value = value @table = table @line = line end
Public Instance Methods
Source
# File lib/cucumber/multiline_argument/data_table.rb, line 588 def ==(other) other.class == SurplusCell || value == other.value end
Source
# File lib/cucumber/multiline_argument/data_table.rb, line 592 def eql?(other) self == other end
Source
# File lib/cucumber/multiline_argument/data_table.rb, line 584 def inspect! @value = "(i) #{value.inspect}" end
Source
# File lib/cucumber/multiline_argument/data_table.rb, line 601 def to_sexp [:cell, @value] end
For testing only