10 lines
149 B
Haskell
10 lines
149 B
Haskell
module Spec.Treasury (tests) where
|
|
|
|
import Test.Tasty (TestTree, testGroup)
|
|
|
|
tests :: [TestTree]
|
|
tests =
|
|
[ testGroup
|
|
"treasury"
|
|
[]
|
|
]
|