Scenario: 1000km distances # features/distance.feature:262
Given a grid size of 1000000 meters # features/step_definitions/data.rb:11
Given the nodes # features/step_definitions/data.rb:15
| a | b |
| | c |
And the ways # features/step_definitions/data.rb:32
| nodes |
| abc |
When I route I should get # features/step_definitions/routing.rb:189
| from | to | route | distance |
| a | b | abc | 1000000 |
| b | a | abc | 1000000 |
| b | c | abc | 1000000 |
| c | b | abc | 1000000 |
| a | c | abc | 2000000 |
| c | a | abc | 2000000 |
execution expired (#<Class:0x00000100aa36c8>)