1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# LANGUAGE AllowAmbiguousTypes #-}
module Spec.Wrapper (
lawsMonoid
)
where
import Barbies (AllBF, ApplicativeB, Barbie(..), ConstraintsB)
import Test.Tasty(testGroup, TestTree)
import Test.Tasty.QuickCheck(Arbitrary(..), testProperty)
lawsMonoid
:: forall b
. ( Arbitrary (b []), Eq (b []), Show (b [])
, ApplicativeB b
, ConstraintsB b
, AllBF Semigroup [] b
, AllBF Monoid [] b
)
=> TestTree
lawsMonoid
= testGroup "Monoid laws"
[ testProperty "neutral element" $ \b ->
unwrap (Barbie b <> mempty) == b &&
unwrap (mempty <> Barbie b) == b
, testProperty "associativity" $ \b1 b2 b3 ->
unwrap ((Barbie b1 <> Barbie b2) <> Barbie b3) ==
unwrap ( Barbie b1 <> (Barbie b2 <> Barbie b3))
]
where
unwrap = getBarbie :: Barbie b [] -> b []
instance Arbitrary (b f) => Arbitrary (Barbie b f) where
arbitrary = Barbie <$> arbitrary
|