Some trivial cucumber tests

This commit is contained in:
Joe Thornber
2013-03-20 19:44:09 +00:00
parent 43d5d8d2a2
commit 81d4e5523f
5 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
Feature: thin_check
Scenario: print version (-V flag)
When I run `thin_check -V`
Then it should pass with:
"""
0.1.5
"""
Scenario: print version (--version flag)
When I run `thin_check --version`
Then it should pass with:
"""
0.1.5
"""
Scenario: print help
When I run `thin_check --help`
Then it should pass with:
"""
Usage: thin_check [options] {device|file}
Options:
{-q|--quiet}
{-h|--help}
{-V|--version}
"""
Scenario: print help
When I run `thin_check -h`
Then it should pass with:
"""
Usage: thin_check [options] {device|file}
Options:
{-q|--quiet}
{-h|--help}
{-V|--version}
"""