diff options
author | Julien Dessaux | 2021-04-08 17:57:55 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-04-08 17:57:55 +0200 |
commit | 13195d209c523d3d45f3456086bce61223950dab (patch) | |
tree | 45842afa75b8a91e73ce6c5800fc2086c6ebc1ee /pkg/config/test_data | |
parent | Removed documentation of a feature that is not yet implemented (diff) | |
download | trains-13195d209c523d3d45f3456086bce61223950dab.tar.gz trains-13195d209c523d3d45f3456086bce61223950dab.tar.bz2 trains-13195d209c523d3d45f3456086bce61223950dab.zip |
Fixed wrong implementation of yaml default values and of the corresponding tests
Diffstat (limited to '')
-rw-r--r-- | pkg/config/test_data/complete.yaml | 4 | ||||
-rw-r--r-- | pkg/config/test_data/minimal.yaml | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/pkg/config/test_data/complete.yaml b/pkg/config/test_data/complete.yaml new file mode 100644 index 0000000..e34db15 --- /dev/null +++ b/pkg/config/test_data/complete.yaml @@ -0,0 +1,4 @@ +address: 127.0.0.2 +port: 8082 +token: 12345678-9abc-def0-1234-56789abcdef0 +trainStop: "ABCD:test:01" diff --git a/pkg/config/test_data/minimal.yaml b/pkg/config/test_data/minimal.yaml index e34db15..5092997 100644 --- a/pkg/config/test_data/minimal.yaml +++ b/pkg/config/test_data/minimal.yaml @@ -1,4 +1,2 @@ -address: 127.0.0.2 -port: 8082 token: 12345678-9abc-def0-1234-56789abcdef0 trainStop: "ABCD:test:01" |