Sha256: 33d9a3f6528b0aa9344f4aeaa08951f821121d13f97a4d1091171780680e34e0
Contents?: true
Size: 737 Bytes
Versions: 38
Compression:
Stored size: 737 Bytes
Contents
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 Value main = run emit tests port emit : ( String, Value ) -> Cmd msg
Version data entries
38 entries across 38 versions & 1 rubygems