Sha256: 8fa77ab3f4dc39b3e1d9572694f6628bbc3b4276a658db4b2368c0cd54281bf3

Contents?: true

Size: 554 Bytes

Versions: 225

Compression:

Stored size: 554 Bytes

Contents

module Test.Main where

import Prelude
import Test.Unit (suite, test)
import Test.Unit.Main (runTest)
import Test.Unit.Assert as Assert
import Data.Maybe (Maybe(Just, Nothing))
import HelloWorld (helloWorld)


main = runTest do
  suite "HelloWorld.helloWorld" do
    test "Hello with no name" do
      Assert.equal "Hello, World!" (helloWorld Nothing)
    test "Hello to a sample name" do
      Assert.equal "Hello, Alice!" (helloWorld (Just "Alice"))
    test "Hello to another sample name" do
      Assert.equal "Hello, Bob!" (helloWorld (Just "Bob"))

Version data entries

225 entries across 225 versions & 1 rubygems

Version Path
trackler-2.1.0.40 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.39 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.38 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.37 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.36 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.34 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.33 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.32 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.31 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.30 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.29 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.28 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.27 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.26 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.25 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.24 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.23 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.22 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.21 tracks/purescript/exercises/hello-world/test/Main.purs
trackler-2.1.0.20 tracks/purescript/exercises/hello-world/test/Main.purs