initial support for testing distance matrices

This commit is contained in:
Emil Tin
2015-01-01 15:12:45 +01:00
parent 0a884cc64a
commit 593808f24d
3 changed files with 62 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
@matrix @testbot
Feature: Basic Distance Matrix
Background:
Given the profile "testbot"
Scenario: A single way with two nodes
Given the node map
| a | b |
And the ways
| nodes |
| ab |
When I request a travel time matrix I should get
| | a | b |
| a | 0 | 100 |
| b | 100 | 0 |