-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving bools out of 98YD to avoid bloat. Adding trim to int parsing. …
…Moving yaml tests to more canonical locations on disk. Adding floats in test
- Loading branch information
1 parent
1a46d70
commit 3aa6d78
Showing
6 changed files
with
71 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
elements: | ||
- name: Example Name | ||
bool_val: true | ||
int_val: 0 | ||
float_val: 3.14 | ||
- name: Example Name 2 | ||
bool_val: false | ||
int_val: 120 | ||
float_val: 56.123 |
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,14 @@ | ||
elemennts: | ||
- name: Spec Example 5.5. Comment Indicator | ||
from: http://www.yaml.org/spec/1.2/spec.html#id2773032 | ||
tags: spec comment empty | ||
yaml: | | ||
# Comment only. | ||
tree: | | ||
+STR | ||
-STR | ||
json: "" | ||
dump: "" | ||
bool_val: true | ||
bool_val_b2: false | ||
bool_val_with_spaces: true |
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 |
---|---|---|
|
@@ -8,7 +8,4 @@ elemennts: | |
+STR | ||
-STR | ||
json: "" | ||
dump: "" | ||
bool_val: true | ||
bool_val_b2: false | ||
bool_val_with_spaces: true | ||
dump: "" |
This file was deleted.
Oops, something went wrong.
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