choreo 0.12.0

DSL for BDD type testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This test ensures that the sort command correctly orders a series of lines piped to it.
feature "Sort Utility"
actors: Terminal

scenario "Sort a list of lines" {
    test SortOrdersLinesAlphabetically "sort correctly orders lines" {
        given:
            wait >= 50ms
        when:
            Terminal run "printf 'charlie\nalpha\nbravo' | sort"
        then:
            Terminal output_matches "alpha\nbravo\ncharlie"
    }
}