summaryrefslogtreecommitdiff
path: root/subplot.yaml
blob: f35cdefe0686374bc42ae1ae3d1e77ee1e5b37a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
- when: I run sp-docgen {md} -o {output}
  function: run_docgen

- when: I run sp-docgen {md} -o {output} --date={date}
  function: run_docgen_with_date

- when: I try to run sp-docgen {md} -o {output}
  function: try_docgen

- when: I run sp-codegen --run {filename} -o {testprog}
  function: run_codegen_and_program

- when: I run sp-codegen {filename} -o {testprog}
  function: run_codegen

- when: I try to run sp-codegen --run {filename} -o {testprog}
  function: try_codegen_and_program

- when: I run python3 {testprog} {pattern}
  function: run_python_test_program

- when: I run bash {testprog} {pattern}
  function: run_bash_test_program

- when: I run sp-meta {filename}
  function: run_meta

- when: I run pandoc --filter sp-filter {filename} -o {output}
  function: run_pandoc_with_filter

- then: scenario "(?P<name>.+)" was run
  function: scenario_was_run
  regex: true

- then: scenario "(?P<name>.+)" was not run
  function: scenario_was_not_run
  regex: true

- then: step "(?P<keyword>given|when|then) (?P<name>.+)" was run
  function: step_was_run
  regex: true

- then: step "(?P<keyword1>given|when|then) (?P<name1>.+)" was run, and then step "(?P<keyword2>given|when|then) (?P<name2>.+)"
  function: step_was_run_and_then
  regex: true

- then: cleanup for "(?P<keyword1>given|when|then) (?P<name1>.+)" was run, and then for "(?P<keyword2>given|when|then) (?P<name2>.+)"
  function: cleanup_was_run
  regex: true

- then: cleanup for "(?P<keyword>given|when|then) (?P<name>.+)" was not run
  function: cleanup_was_not_run
  regex: true