-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for parsing NaN, Infinity, and -Infinity
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 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,14 @@ | ||
@testset begin | ||
test_str = """{"x": NaN, "y": Infinity, "z": -Infinity}""" | ||
@test_throws ErrorException JSON.parse(test_str) | ||
val = JSON.parse(test_str, allownan=true) | ||
@test val["x"] === NaN | ||
@test val["y"] == Inf | ||
@test val["z"] == -Inf | ||
|
||
@test_throws ErrorException JSON.parse(IOBuffer(test_str)) | ||
val2 = JSON.parse(IOBuffer(test_str), allownan=true) | ||
@test val2["x"] === NaN | ||
@test val2["y"] == Inf | ||
@test val2["z"] == -Inf | ||
end |
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