Sha256: 9ef38fade7c1165b85a5c36ea7300aa3b8a7f80abe886a5f2ec0301aefdc5056
Contents?: true
Size: 872 Bytes
Versions: 74
Compression:
Stored size: 872 Bytes
Contents
module Tests exposing (..) import Accumulate exposing (accumulate) import Expect import String import Test exposing (..) square : Int -> Int square x = x * x tests : Test tests = describe "Accumulate" [ test "[] Accumulate" <| \() -> Expect.equal [] (accumulate square []) , skip <| test "square Accumulate" <| \() -> Expect.equal [ 1, 4, 9 ] (accumulate square [ 1, 2, 3 ]) , skip <| test "toUpper Accumulate" <| \() -> Expect.equal [ "HELLO", "WORLD" ] (accumulate String.toUpper [ "hello", "world" ]) , skip <| test "reverse Accumulate" <| \() -> Expect.equal [ "olleh", "dlrow" ] (accumulate String.reverse [ "hello", "world" ]) ]
Version data entries
74 entries across 74 versions & 1 rubygems