9 lines
158 B
Haskell
9 lines
158 B
Haskell
|
module Main (main) where
|
||
|
|
||
|
import Test.Hspec
|
||
|
import qualified FediChordSpec
|
||
|
|
||
|
main :: IO ()
|
||
|
main = hspec $ do
|
||
|
describe "FediChord tests" FediChordSpec.spec
|