Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 771 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 771 Bytes

BDD for command-line applications

Inspired by aruba.

Documentation.

Build Status PyPI PyPI

Feature: showing off cli-bdd

    Scenario: create and remove file
        Given I cd to "/tmp/"
        Given a file "test.txt" with "some text"
        When I run `rm -i test.txt` interactively
        And I type "Yes"
        Then the file "/tmp/test.txt" should not exist