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