Skip to content

Commit

Permalink
A little more coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Jun 22, 2019
1 parent de494fa commit e81bb32
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ end

@test_throws ArgumentError JSON3.read("")
@test JSON3.read("{\"hey\":1}").hey == 1
show(JSON3.read("{\"hey\":1}"))
@test JSON3.read("[\"hey\",1]") == ["hey",1]
show(JSON3.read("[\"hey\",1]"))
@test JSON3.read("1.0") === 1
@test JSON3.read("1") === 1
@test JSON3.read("1.1") === 1.1
Expand Down

2 comments on commit e81bb32

@quinnj
Copy link
Owner Author

@quinnj quinnj commented on e81bb32 Jun 22, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/1508

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" e81bb3293c25ca02c01cbfe221ca7a99f122672f
git push origin v0.1.0

Please sign in to comment.