Add missing arrival instruction.

This commit is contained in:
Daniel Patterson 2016-03-31 17:27:30 -07:00 committed by Patrick Niklaus
parent 29a2447906
commit 75979d7e1c

View File

@ -14,8 +14,8 @@ Feature: Status messages
When I route I should get
| from | to | route | status | message |
| a | b | ab | 200 | |
| b | a | ab | 200 | |
| a | b | ab,ab | 200 | |
| b | a | ab,ab | 200 | |
Scenario: No route found
Given the node map
@ -30,8 +30,8 @@ Feature: Status messages
When I route I should get
| from | to | route | status | message |
| a | b | ab | 200 | |
| c | d | cd | 200 | |
| a | b | ab,ab | 200 | |
| c | d | cd,cd | 200 | |
| a | c | | 400 | Impossible route between points |
| b | d | | 400 | Impossible route between points |