{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
module Test.Validity.AesonSpec where
import Test.Hspec
import Data.Aeson
import Data.GenValidity
import Data.GenValidity.Aeson ()
import Data.GenValidity.Text ()
import Data.Text (Text)
import GHC.Generics
import Test.Validity
import Test.Validity.Aeson
spec :: Spec
spec = do
jsonSpecOnGen (genListOf $ pure 'a') "sequence of 'a's" (const [])
-- jsonSpec @Double DOES NOT HOLD
jsonSpecOnValid @Rational
jsonSpec @Int
jsonSpecOnArbitrary @Int
jsonSpecOnValid @ForShow
jsonSpecOnValid @Value
shrinkValidSpec @Value
newtype ForShow =
ForShow Text
deriving (Show, Eq, Generic)
instance Validity ForShow
instance GenUnchecked ForShow
instance GenValid ForShow
instance FromJSON ForShow
instance ToJSON ForShow
-- >>> decode (Data.Aeson.encode (ForShow "\248")) :: Maybe ForShow
-- Just (ForShow "\248")