From c68a03d05c4f997ecda7a1f1272e329d559d5400 Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Sat, 26 Jan 2013 18:59:31 +0100 Subject: [PATCH] add test scenario matching wiki graph explanation --- features/testbot/graph.feature | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 features/testbot/graph.feature diff --git a/features/testbot/graph.feature b/features/testbot/graph.feature new file mode 100644 index 000000000..97a517119 --- /dev/null +++ b/features/testbot/graph.feature @@ -0,0 +1,22 @@ +@routing @graph +Feature: Basic Routing +Test the input data descibed on https://github.com/DennisOSRM/Project-OSRM/wiki/Graph-representation + + Background: + Given the profile "testbot" + + @smallest + Scenario: Graph transformation + Given the node map + | | | d | + | a | b | c | + | | | e | + + And the ways + | nodes | + | abc | + | dce | + + When I route I should get + | from | to | route | + | a | e | abc,dce |