Exception: Cucumber::Ast::Table::Different

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cucumber/ast/table.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(table) ⇒ Different

Returns a new instance of Different.



26
27
28
29
# File 'lib/cucumber/ast/table.rb', line 26

def initialize(table)
  super('Tables were not identical')
  @table = table
end

Instance Attribute Details

#tableObject (readonly)

Returns the value of attribute table.



24
25
26
# File 'lib/cucumber/ast/table.rb', line 24

def table
  @table
end