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.
335 336 337 338 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 335 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.
333 334 335 |
# File 'lib/cucumber/multiline_argument/data_table.rb', line 333 def table @table end |