use osrm-database during testing

This commit is contained in:
Emil Tin
2014-01-24 21:14:38 +01:00
committed by Emil Tin
parent bc6466cc36
commit 7ba8e51fa9
12 changed files with 192 additions and 55 deletions
+31
View File
@@ -0,0 +1,31 @@
@routing @datastore
Feature: Temporary tests related to osrm-datastore
Background:
Given the profile "testbot"
Scenario: Scenario ab
Given the node map
| a | b |
And the ways
| nodes |
| ab |
When I route I should get
| from | to | route |
| a | b | ab |
| b | a | ab |
Scenario: Scenaria xy
Given the node map
| x | y |
And the ways
| nodes |
| xy |
When I route I should get
| from | to | route |
| x | y | xy |
| y | x | xy |