elm/exercises/accumulate/Tests.elm

40 lines
966 B
Elm
Raw Normal View History

port module Main exposing (..)
2015-09-12 20:38:29 +00:00
import Test.Runner.Node exposing (run, TestProgram)
import Json.Encode exposing (Value)
import Test exposing (..)
import Expect
import Accumulate exposing (accumulate)
2015-09-12 20:38:29 +00:00
import String
2015-09-12 20:38:29 +00:00
square : Int -> Int
square x =
x * x
2015-09-12 20:38:29 +00:00
tests : Test
tests =
describe "Accumulate"
2017-05-11 17:57:34 +00:00
[ test "[] Accumulate" <|
\() -> Expect.equal [] (accumulate square [])
, test "square Accumulate" <|
\() -> Expect.equal [ 1, 4, 9 ] (accumulate square [ 1, 2, 3 ])
, test "toUpper Accumulate" <|
\() ->
Expect.equal [ "HELLO", "WORLD" ]
(accumulate String.toUpper [ "hello", "world" ])
, test "reverse Accumulate" <|
\() ->
Expect.equal [ "olleh", "dlrow" ]
(accumulate String.reverse [ "hello", "world" ])
]
2015-09-12 20:38:29 +00:00
main : TestProgram
main =
run emit tests
port emit : ( String, Value ) -> Cmd msg