Class: 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
- #==(o) ⇒ Object
- #eql?(o) ⇒ 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.
703 704 705 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 703 def initialize(value, table, line) @value, @table, @line = value, table, line end |
Instance Attribute Details
#line ⇒ Object (readonly)
Returns the value of attribute line.
700 701 702 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 700 def line @line end |
#status ⇒ Object
Returns the value of attribute status.
701 702 703 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 701 def status @status end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
700 701 702 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 700 def table @table end |
#value ⇒ Object
Returns the value of attribute value.
701 702 703 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 701 def value @value end |
Instance Method Details
#==(o) ⇒ Object
711 712 713 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 711 def ==(o) SurplusCell === o || value == o.value end |
#eql?(o) ⇒ Boolean
715 716 717 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 715 def eql?(o) self == o end |
#hash ⇒ Object
719 720 721 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 719 def hash 0 end |
#inspect! ⇒ Object
707 708 709 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 707 def inspect! @value = "(i) #{value.inspect}" end |
#to_sexp ⇒ Object
For testing only
724 725 726 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 724 def to_sexp #:nodoc: [:cell, @value] end |