mirror of
https://github.com/correl/elm.git
synced 2024-11-16 03:00:08 +00:00
20 lines
566 B
Elm
20 lines
566 B
Elm
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"))
|
|
]
|