Move yaml/json sample configs into the samples dir like the other ones

This commit is contained in:
Miguel Jacq 2025-11-26 15:29:09 +11:00
parent 8425154481
commit 838e3f0010
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
2 changed files with 18 additions and 0 deletions

7
tests/samples/bar.yaml Normal file
View file

@ -0,0 +1,7 @@
---
# Top comment
foo: "bar"
blah:
- something
- else

11
tests/samples/foo.json Normal file
View file

@ -0,0 +1,11 @@
{
"foo": "bar",
"nested": {
"a": 1,
"b": true
},
"list": [
10,
20
]
}