Skip to content

Commit

Permalink
adds test for empty dict
Browse files Browse the repository at this point in the history
  • Loading branch information
antonydellavecchia committed Mar 19, 2024
1 parent d62096e commit f809352
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/Serialization/containers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@
@test original == loaded
end
end

original = Dict{Symbol, Int}()
test_save_load_roundtrip(path, original) do loaded
@test original == loaded
end
end

@testset "Testing (de)serialization of Set" begin
Expand Down

0 comments on commit f809352

Please sign in to comment.