Class: Cucumber::MultilineArgument::DataTable::Cell
- Inherits:
-
Object
- Object
- Cucumber::MultilineArgument::DataTable::Cell
- Defined in:
- lib/cucumber/multiline_argument/data_table.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#line ⇒ Object
readonly
Returns the value of attribute line.
-
#status ⇒ Object
Returns the value of attribute status.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(value, table, line) ⇒ Cell
constructor
A new instance of Cell.
- #inspect! ⇒ Object
-
#to_sexp ⇒ Object
For testing only.
Constructor Details
#initialize(value, table, line) ⇒ Cell
Returns a new instance of Cell.
596 597 598 599 600 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 596 def initialize(value, table, line) @value = value @table = table @line = line end |
Instance Attribute Details
#line ⇒ Object (readonly)
Returns the value of attribute line.
593 594 595 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 593 def line @line end |
#status ⇒ Object
Returns the value of attribute status.
594 595 596 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 594 def status @status end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
593 594 595 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 593 def table @table end |
#value ⇒ Object
Returns the value of attribute value.
594 595 596 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 594 def value @value end |
Instance Method Details
#==(other) ⇒ Object
606 607 608 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 606 def ==(other) SurplusCell == other.class || value == other.value end |
#eql?(other) ⇒ Boolean
610 611 612 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 610 def eql?(other) self == other end |
#hash ⇒ Object
614 615 616 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 614 def hash 0 end |
#inspect! ⇒ Object
602 603 604 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 602 def inspect! @value = "(i) #{value.inspect}" end |
#to_sexp ⇒ Object
For testing only
619 620 621 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 619 def to_sexp #:nodoc: [:cell, @value] end |