mirror of
https://github.com/correl/elm.git
synced 2024-11-26 03:00:06 +00:00
38 lines
1.4 KiB
Elm
38 lines
1.4 KiB
Elm
module Tests exposing (..)
|
|
|
|
import Expect
|
|
import Grains exposing (square)
|
|
import Json.Encode exposing (Value)
|
|
import Test exposing (..)
|
|
|
|
|
|
tests : Test
|
|
tests =
|
|
describe "Grains"
|
|
[ describe "square"
|
|
[ test "of 1" <|
|
|
\() -> Expect.equal (Just 1) (square 1)
|
|
, test "of 2" <|
|
|
\() -> Expect.equal (Just 2) (square 2)
|
|
, test "of 3" <|
|
|
\() -> Expect.equal (Just 4) (square 3)
|
|
, test "of 4" <|
|
|
\() -> Expect.equal (Just 8) (square 4)
|
|
, test "of 16" <|
|
|
\() -> Expect.equal (Just 32768) (square 16)
|
|
, test "of 32" <|
|
|
\() -> Expect.equal (Just 2147483648) (square 32)
|
|
, test "square 0 raises an exception" <|
|
|
\() -> Expect.equal Nothing (square 0)
|
|
, test "negative square raises an exception" <|
|
|
\() -> Expect.equal Nothing (square -1)
|
|
|
|
{-
|
|
Where are the bigger test values?!? Because Javascript's numbers
|
|
can't represent values higher than `Number.MAX_SAFE_INTEGER`
|
|
(i.e. 9007199254740991), we chose to exclude these final values
|
|
to avoid the weirdness. A bit more information can be found
|
|
here: https://github.com/elm-lang/elm-compiler/issues/1246
|
|
-}
|
|
]
|
|
]
|