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.1.0.23 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.22 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.21 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.20 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.19 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.18 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.17 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.16 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.15 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.14 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.13 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.12 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.11 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.10 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.9 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.8 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.7 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.6 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.5 tracks/elm/exercises/hello-world/Tests.elm
trackler-2.1.0.4 tracks/elm/exercises/hello-world/Tests.elm