Exception: Cucumber::MultilineArgument::DataTable::Different
- Inherits:
-
StandardError
- Object
- StandardError
- Cucumber::MultilineArgument::DataTable::Different
- Defined in:
- lib/cucumber/multiline_argument/data_table.rb
Instance Attribute Summary collapse
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(table) ⇒ Different
constructor
A new instance of Different.
Constructor Details
#initialize(table) ⇒ Different
Returns a new instance of Different.
333 334 335 336 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 333 def initialize(table) @table = table super("Tables were not identical:\n#{table}") end |
Instance Attribute Details
#table ⇒ Object (readonly)
Returns the value of attribute table.
331 332 333 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 331 def table @table end |