Simple placeholder test

This commit is contained in:
2018-10-26 22:15:11 +03:00
parent 6cabe97b30
commit 5961a99d77
2 changed files with 27 additions and 0 deletions

9
common/src/Spec.hs Normal file
View File

@ -0,0 +1,9 @@
module Main where
import Test.Hspec
spec :: Spec
spec = describe "test" $ it "verifies tests work" $ True == True
main :: IO ()
main = hspec spec