1@prepare @options @invalid
2Feature: osrm-customize command line options: invalid options
3
4    Background:
5        Given the profile "testbot"
6        And the node map
7            """
8            a b
9            """
10        And the ways
11            | nodes |
12            | ab    |
13        And the data has been extracted
14
15    Scenario: osrm-customize - Non-existing option
16        When I try to run "osrm-customize --fly-me-to-the-moon"
17        Then stdout should be empty
18        And stderr should contain "option"
19        And stderr should contain "fly-me-to-the-moon"
20        And it should exit with an error
21