Start stubbing out cache_dump

This commit is contained in:
Joe Thornber
2013-08-19 12:40:03 +01:00
parent a933749cbf
commit d3ce6b811b
6 changed files with 125 additions and 0 deletions

View File

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