elm/exercises/accumulate/AccumulateTests.elm

40 lines
956 B
Elm
Raw Normal View History

port module Main exposing (..)
2015-09-12 20:38:29 +00:00
import Test.Runner.Node exposing (run)
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"
[ 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 : Program Never
main =
run emit tests
port emit : ( String, Value ) -> Cmd msg