Class: Cucumber::MultilineArgument::DataTable::Cell

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/multiline_argument/data_table.rb

Direct Known Subclasses

SurplusCell

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, table, line) ⇒ Cell

Returns a new instance of Cell.



584
585
586
587
588
# File 'lib/cucumber/multiline_argument/data_table.rb', line 584

def initialize(value, table, line)
  @value = value
  @table = table
  @line = line
end

Instance Attribute Details

#lineObject (readonly)

Returns the value of attribute line.



581
582
583
# File 'lib/cucumber/multiline_argument/data_table.rb', line 581

def line
  @line
end

#statusObject

Returns the value of attribute status.



582
583
584
# File 'lib/cucumber/multiline_argument/data_table.rb', line 582

def status
  @status
end

#tableObject (readonly)

Returns the value of attribute table.



581
582
583
# File 'lib/cucumber/multiline_argument/data_table.rb', line 581

def table
  @table
end

#valueObject

Returns the value of attribute value.



582
583
584
# File 'lib/cucumber/multiline_argument/data_table.rb', line 582

def value
  @value
end

Instance Method Details

#==(other) ⇒ Object



594
595
596
# File 'lib/cucumber/multiline_argument/data_table.rb', line 594

def ==(other)
  other.class == SurplusCell || value == other.value
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


598
599
600
# File 'lib/cucumber/multiline_argument/data_table.rb', line 598

def eql?(other)
  self == other
end

#hashObject



602
603
604
# File 'lib/cucumber/multiline_argument/data_table.rb', line 602

def hash
  0
end

#inspect!Object



590
591
592
# File 'lib/cucumber/multiline_argument/data_table.rb', line 590

def inspect!
  @value = "(i) #{value.inspect}"
end

#to_sexpObject

For testing only



607
608
609
# File 'lib/cucumber/multiline_argument/data_table.rb', line 607

def to_sexp
  [:cell, @value]
end