Sha256: e7c4389a7fa5c3ccca8395fb1c1de51d1330e7bb8f23fc4e7c39e46da596b819

Contents?: true

Size: 566 Bytes

Versions: 29

Compression:

Stored size: 566 Bytes

Contents

module Tests exposing (..)

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"))
        ]

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
trackler-2.1.0.53 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.52 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.51 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.50 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.49 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.48 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.47 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.46 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.45 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.44 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.43 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.42 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.41 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.40 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.39 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.38 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.37 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.36 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.34 tracks/elm/exercises/hello-world/tests/Tests.elm
trackler-2.1.0.33 tracks/elm/exercises/hello-world/tests/Tests.elm