hbs2/hbs2-storage-simple/test/Main.hs

22 lines
469 B
Haskell

module Main where
import Test.Tasty
import Test.Tasty.HUnit
import TestSimpleStorage
import HBS2.Storage
main :: IO ()
main =
defaultMain $
testGroup "root"
[
testCase "testSimpleStorageRandomReadWrite" testSimpleStorageRandomReadWrite
, testCase "testSimpleStorageNoKeys" testSimpleStorageNoKeys
, testCase "testSimpleStorageRefs" testSimpleStorageRefs
, testCase "testSimpleStorageBundles" testSimpleStorageBundles
]