packages feed

crdt-1.0: test/Counter.hs

{-# LANGUAGE TypeApplications #-}

module Counter
    ( counter
    ) where

import           CRDT.Cm.Counter (Counter)
import           Test.Tasty (TestTree, testGroup)

import           Laws (cmrdtLaw)

counter :: TestTree
counter = testGroup "Counter" [cmrdtLaw @(Counter Int)]