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

19 lines
262 B
Haskell

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