mirror of
https://github.com/correl/elm.git
synced 2024-11-16 19:19:28 +00:00
54e3017815
* Update exercises to elm-test 2.0 * Update docs to mention `elm-test` again * Update .travis.yml to the correct version of elm-test * Conform to the `<| \() ->` convention
33 lines
954 B
Elm
33 lines
954 B
Elm
port module Main exposing (..)
|
|
|
|
import Test.Runner.Node exposing (run)
|
|
import Json.Encode exposing (Value)
|
|
import Test exposing (..)
|
|
import Expect
|
|
import SumOfMultiples exposing (sumOfMultiples)
|
|
|
|
|
|
tests : Test
|
|
tests =
|
|
describe "Sum Of Multiples"
|
|
[ test "[3, 5] 15" <|
|
|
\() -> Expect.equal 45 (sumOfMultiples [ 3, 5 ] 15)
|
|
, test "[7, 13, 17] 20" <|
|
|
\() -> Expect.equal 51 (sumOfMultiples [ 7, 13, 17 ] 20)
|
|
, test "[4, 6] 15" <|
|
|
\() -> Expect.equal 30 (sumOfMultiples [ 4, 6 ] 15)
|
|
, test "[5, 6, 8] 150" <|
|
|
\() -> Expect.equal 4419 (sumOfMultiples [ 5, 6, 8 ] 150)
|
|
, test "[43, 47] 10000" <|
|
|
\() -> Expect.equal 2203160 (sumOfMultiples [ 43, 47 ] 10000)
|
|
, test "[5, 25] 51" <|
|
|
\() -> Expect.equal 275 (sumOfMultiples [ 5, 25 ] 51)
|
|
]
|
|
|
|
|
|
main : Program Never
|
|
main =
|
|
run emit tests
|
|
|
|
|
|
port emit : ( String, Value ) -> Cmd msg
|