commit 30466a274b40928ed6baf779f304b65f61bf3123
parent 8f365963169d8e803c92caf8c76998f43ea4a166
Author: Remy Noulin <loader2x@gmail.com>
Date: Tue, 12 May 2020 19:57:10 +0200
add test files for libsheepyObjectTest
src/json/file.json | 7 +++++++
src/json/file.yml | 11 +++++++++++
src/json/fileA.json | 5 +++++
src/json/fileA.yml | 10 ++++++++++
4 files changed, 33 insertions(+)
Diffstat:
4 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/src/json/file.json b/src/json/file.json
@@ -0,0 +1,7 @@
+{
+dasd: 'asd',
+'asd': 234,
+dict: {array: [1,1], "asd": true, float: 34.34},
+bool: false,
+zzz: null
+}
diff --git a/src/json/file.yml b/src/json/file.yml
@@ -0,0 +1,11 @@
+---
+ dict:
+ array:
+ - 1
+ - 1
+ float: 3.434000e+01
+ asd: true
+ dasd: asd
+ asd: 234
+ bool: false
+ zzz: null
diff --git a/src/json/fileA.json b/src/json/fileA.json
@@ -0,0 +1,5 @@
+[
+'asd',
+234,
+{array: [1,1], "asd": true, float: 34.34}
+]
diff --git a/src/json/fileA.yml b/src/json/fileA.yml
@@ -0,0 +1,10 @@
+---
+ -
+ dict: hello
+ array:
+ - 1
+ - 1
+ float: 3.434000e+01
+ asd: true
+ - asd
+ - 234