Skip to content

Commit

Permalink
test: add coverage for float exponent syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeStanger committed Jun 15, 2023
1 parent 42fa830 commit 693c91e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/inputs/float.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
foo = 3.14159
bar = 1.01e+2
}
1 change: 1 addition & 0 deletions assets/outputs/json/float.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"bar": 101.0,
"foo": 3.14159
}
1 change: 1 addition & 0 deletions assets/outputs/toml/float.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bar = 101.0
foo = 3.14159

1 change: 1 addition & 0 deletions assets/outputs/yaml/float.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bar: 101.0
foo: 3.14159

0 comments on commit 693c91e

Please sign in to comment.