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

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

Overview

:nodoc:

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.



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

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

Instance Attribute Details

#lineObject (readonly)

Returns the value of attribute line.



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

def line
  @line
end

#statusObject

Returns the value of attribute status.



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

def status
  @status
end

#tableObject (readonly)

Returns the value of attribute table.



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

def table
  @table
end

#valueObject

Returns the value of attribute value.



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

def value
  @value
end

Instance Method Details

#==(other) ⇒ Object



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

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

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


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

def eql?(other)
  self == other
end

#hashObject



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

def hash
  0
end

#inspect!Object



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

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

#to_sexpObject

For testing only



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

def to_sexp # :nodoc:
  [:cell, @value]
end