This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add more context to errors - Test invalid file contents Setup error - Test writing and reading more complex map data to files
- Loading branch information
1 parent
5c1e2bd
commit 8d6f0a5
Showing
6 changed files
with
211 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"data_json":"eyJmbG9hdCI6MS41LCJpbnRlZ2VyIjoxLCJpbnRlZ2VyX2FycmF5IjpbMSwyLDNdLCJvYmplY3QiOnsia2V5IjoidmFsdWUifSwic3RyaW5nIjoic3RyaW5nIiwic3RyaW5nX2FycmF5IjpbImEiLCJiIiwiYyJdfQ==","data_yaml":"ZmxvYXQ6IDEuNQppbnRlZ2VyOiAxCmludGVnZXJfYXJyYXk6CiAgICAtIDEKICAgIC0gMgogICAgLSAzCm9iamVjdDoKICAgIGtleTogdmFsdWUKc3RyaW5nOiBzdHJpbmcKc3RyaW5nX2FycmF5OgogICAgLSBhCiAgICAtIGIKICAgIC0gYwo="} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
data_json: '{"float":1.5,"integer":1,"integer_array":[1,2,3],"object":{"key":"value"},"string":"string","string_array":["a","b","c"]}' | ||
data_yaml: | | ||
float: 1.5 | ||
integer: 1 | ||
integer_array: | ||
- 1 | ||
- 2 | ||
- 3 | ||
object: | ||
key: value | ||
string: string | ||
string_array: | ||
- a | ||
- b | ||
- c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this is not JSON |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this is not YAML |