Sha256: 98664deaae11a3dcff8b3d06e66287034519517e06a087b6473c93e50d550f4c

Contents?: true

Size: 332 Bytes

Versions: 66

Compression:

Stored size: 332 Bytes

Contents

import Test.Hspec        (Spec, describe, it, shouldBe)
import Test.Hspec.Runner (configFastFail, defaultConfig, hspecWith)

import HelloWorld (hello)

main :: IO ()
main = hspecWith defaultConfig {configFastFail = True} specs

specs :: Spec
specs = describe "hello-world" $

    it "hello" $
      hello `shouldBe` "Hello, World!"

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
trackler-2.0.8.6 tracks/haskell/exercises/hello-world/test/Tests.hs
trackler-2.0.8.5 tracks/haskell/exercises/hello-world/test/Tests.hs
trackler-2.0.8.4 tracks/haskell/exercises/hello-world/test/Tests.hs
trackler-2.0.8.3 tracks/haskell/exercises/hello-world/test/Tests.hs
trackler-2.0.8.2 tracks/haskell/exercises/hello-world/test/Tests.hs
trackler-2.0.8.1 tracks/haskell/exercises/hello-world/test/Tests.hs