blob: 6c5cad8ddd2307377c3da80021c774dafb7fb58b (
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
54
55
56
57
58
59
|
# coding: utf-8
import pytest # type: ignore # NOQA
# import ruamel.yaml
from roundtrip import round_trip
class TestProgramConfig:
def test_application_arguments(self) -> None:
# application configur
round_trip("""
args:
username: anthon
passwd: secret
fullname: Anthon van der Neut
tmux:
session-name: test
loop:
wait: 10
""")
def test_single(self) -> None:
# application configuration
round_trip("""
# default arguments for the program
args: # needed to prevent comment wrapping
# this should be your username
username: anthon
passwd: secret # this is plaintext don't reuse \
# important/system passwords
fullname: Anthon van der Neut
tmux:
session-name: test # make sure this doesn't clash with
# other sessions
loop: # looping related defaults
# experiment with the following
wait: 10
# no more argument info to pass
""")
def test_multi(self) -> None:
# application configuration
round_trip("""
# default arguments for the program
args: # needed to prevent comment wrapping
# this should be your username
username: anthon
passwd: secret # this is plaintext don't reuse
# important/system passwords
fullname: Anthon van der Neut
tmux:
session-name: test # make sure this doesn't clash with
# other sessions
loop: # looping related defaults
# experiment with the following
wait: 10
# no more argument info to pass
""")
|