mirror of https://github.com/voidlizard/hbs2
21 lines
400 B
Haskell
21 lines
400 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
|
|
]
|
|
|
|
|