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.



30
31
32
33
# File 'lib/cucumber/ast/table.rb', line 30

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

Instance Attribute Details

#tableObject (readonly)

Returns the value of attribute table.



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

def table
  @table
end