2016-08-17 11:14:17 +00:00
|
|
|
port module Main exposing (..)
|
2016-03-11 11:14:24 +00:00
|
|
|
|
2016-08-17 11:14:17 +00:00
|
|
|
import Test.Runner.Node exposing (run)
|
|
|
|
import Json.Encode exposing (Value)
|
|
|
|
import Test exposing (..)
|
|
|
|
import Expect
|
2016-03-11 11:14:24 +00:00
|
|
|
import Leap
|
|
|
|
|
|
|
|
|
|
|
|
tests : Test
|
|
|
|
tests =
|
2016-08-17 11:14:17 +00:00
|
|
|
describe "Leap"
|
|
|
|
[ test "leap year" <|
|
|
|
|
\() -> Expect.equal True (Leap.isLeapYear 1996)
|
|
|
|
, test "non-leap year" <|
|
|
|
|
\() -> Expect.equal False (Leap.isLeapYear 1997)
|
|
|
|
, test "non-leap even year" <|
|
|
|
|
\() -> Expect.equal False (Leap.isLeapYear 1998)
|
|
|
|
, test "century" <|
|
|
|
|
\() -> Expect.equal False (Leap.isLeapYear 1900)
|
|
|
|
, test "second century" <|
|
|
|
|
\() -> Expect.equal False (Leap.isLeapYear 1800)
|
|
|
|
, test "fourth century" <|
|
|
|
|
\() -> Expect.equal True (Leap.isLeapYear 2400)
|
|
|
|
, test "y2k" <|
|
|
|
|
\() -> Expect.equal True (Leap.isLeapYear 2000)
|
2016-06-19 21:46:13 +00:00
|
|
|
]
|
2016-03-11 11:14:24 +00:00
|
|
|
|
|
|
|
|
2016-08-23 00:31:41 +00:00
|
|
|
main : Program Value
|
2016-05-13 02:26:52 +00:00
|
|
|
main =
|
2016-08-17 11:14:17 +00:00
|
|
|
run emit tests
|
|
|
|
|
|
|
|
|
|
|
|
port emit : ( String, Value ) -> Cmd msg
|