libsheepy

C lib for handling text files, strings and json like data structure with an object oriented system
git clone https://spartatek.se/git/libsheepy.git
Log | Files | Refs | README | LICENSE

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:
Asrc/json/file.json | 7+++++++
Asrc/json/file.yml | 11+++++++++++
Asrc/json/fileA.json | 5+++++
Asrc/json/fileA.yml | 10++++++++++
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