mirror of
https://github.com/correl/elm.git
synced 2024-11-15 19:19:31 +00:00
54e3017815
* Update exercises to elm-test 2.0 * Update docs to mention `elm-test` again * Update .travis.yml to the correct version of elm-test * Conform to the `<| \() ->` convention
30 lines
737 B
Elm
30 lines
737 B
Elm
port module Main exposing (..)
|
|
|
|
import Test.Runner.Node exposing (run)
|
|
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 : Program Never
|
|
main =
|
|
run emit tests
|
|
|
|
|
|
port emit : ( String, Value ) -> Cmd msg
|