Sha256: 8fa77ab3f4dc39b3e1d9572694f6628bbc3b4276a658db4b2368c0cd54281bf3
Contents?: true
Size: 554 Bytes
Versions: 225
Compression:
Stored size: 554 Bytes
Contents
module Test.Main where import Prelude import Test.Unit (suite, test) import Test.Unit.Main (runTest) import Test.Unit.Assert as Assert import Data.Maybe (Maybe(Just, Nothing)) import HelloWorld (helloWorld) main = runTest do suite "HelloWorld.helloWorld" do test "Hello with no name" do Assert.equal "Hello, World!" (helloWorld Nothing) test "Hello to a sample name" do Assert.equal "Hello, Alice!" (helloWorld (Just "Alice")) test "Hello to another sample name" do Assert.equal "Hello, Bob!" (helloWorld (Just "Bob"))
Version data entries
225 entries across 225 versions & 1 rubygems