large-records-0.1.0.0: test/Test/Record/Prop/Show.hs
module Test.Record.Prop.Show (tests) where
import Test.Tasty
import Test.Tasty.QuickCheck
import qualified Test.Record.Prop.Show.Regular as Regular
import qualified Test.Record.Prop.Show.Large as Large
tests :: TestTree
tests = testGroup "Test.Record.Prop.Show" [
testProperty "show" prop_show
]
prop_show :: Regular.Example1 -> Property
prop_show ex = show ex === show (Large.fromRegular ex)