diff options
Diffstat (limited to 'test/Xanthous/Data/EntityMapSpec.hs')
-rw-r--r-- | test/Xanthous/Data/EntityMapSpec.hs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Xanthous/Data/EntityMapSpec.hs b/test/Xanthous/Data/EntityMapSpec.hs index 53f03020f346..88e0d0d7712c 100644 --- a/test/Xanthous/Data/EntityMapSpec.hs +++ b/test/Xanthous/Data/EntityMapSpec.hs @@ -33,7 +33,15 @@ test = localOption (QuickCheckTests 20) else True ] , testGroup "JSON encoding/decoding" - [ testProperty "Preserves IDs" $ \(em :: EntityMap Int) -> + [ testProperty "round-trips" $ \(em :: EntityMap Int) -> + let em' = JSON.decode (JSON.encode em) + in counterexample (show (em' ^? _Just . lastID, em ^. lastID + , em' ^? _Just . byID == em ^. byID . re _Just + , em' ^? _Just . byPosition == em ^. byPosition . re _Just + , em' ^? _Just . _EntityMap == em ^. _EntityMap . re _Just + )) + $ em' === Just em + , testProperty "Preserves IDs" $ \(em :: EntityMap Int) -> let Just em' = JSON.decode $ JSON.encode em in toEIDsAndPositioned em' === toEIDsAndPositioned em ] |