{-# LANGUAGE CPP #-}
module Test.Ouroboros.Storage (tests) where
import qualified Test.Ouroboros.Storage.ChainDB as ChainDB
import qualified Test.Ouroboros.Storage.ImmutableDB as ImmutableDB
import qualified Test.Ouroboros.Storage.LedgerDB as LedgerDB
import qualified Test.Ouroboros.Storage.VolatileDB as VolatileDB
import Test.Tasty (TestTree, testGroup)
tests :: TestTree
tests :: TestTree
tests = TestName -> [TestTree] -> TestTree
testGroup TestName
"Storage"
[ TestTree
ImmutableDB.tests
, TestTree
VolatileDB.tests
, TestTree
LedgerDB.tests
, TestTree
ChainDB.tests
]