Sha256: 8b9e8e796c7a72d742f129bc3b8436238882719d1c981274aad88d00a7857742

Contents?: true

Size: 748 Bytes

Versions: 141

Compression:

Stored size: 748 Bytes

Contents

port module Main exposing (..)

import Test.Runner.Node exposing (run, TestProgram)
import Json.Encode exposing (Value)
import Test exposing (..)
import Expect
import HelloWorld exposing (helloWorld)


tests : Test
tests =
    describe "Hello, World!"
        [ test "Hello with no name" <|
            \() ->
                Expect.equal "Hello, World!" (helloWorld Nothing)
        , test "Hello to a sample name" <|
            \() ->
                Expect.equal "Hello, Alice!" (helloWorld (Just "Alice"))
        , test "Hello to another sample name" <|
            \() ->
                Expect.equal "Hello, Bob!" (helloWorld (Just "Bob"))
        ]


main : TestProgram
main =
    run emit tests


port emit : ( String, Value ) -> Cmd msg

Version data entries

141 entries across 141 versions & 1 rubygems

Version Path
trackler-2.0.8.39 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.38 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.37 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.36 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.35 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.34 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.33 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.32 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.31 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.30 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.29 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.28 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.27 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.26 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.24 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.23 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.22 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.21 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.20 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.0.8.19 tracks/elm/exercises/hello-world/Tests.elm