mirror of
https://github.com/correl/elm.git
synced 2024-12-22 11:09:08 +00:00
Add version test to triangle exercise
This follows the pattern set by some of the other exercises.
This commit is contained in:
parent
d76d7ecb7b
commit
183847554f
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@ import Triangle exposing (triangleKind, Triangle(..))
|
|||
tests : Test
|
||||
tests =
|
||||
describe "triangleKind"
|
||||
[ test "equilateral triangles have equal sides" <|
|
||||
[ test "the solution is for the correct version of the test" <|
|
||||
\() -> Expect.equal 2 version
|
||||
, test "equilateral triangles have equal sides" <|
|
||||
\() -> Expect.equal (Ok Equilateral) (triangleKind 2 2 2)
|
||||
, test "larger equilateral triangles also have equal sides" <|
|
||||
\() -> Expect.equal (Ok Equilateral) (triangleKind 10 10 10)
|
||||
|
|
Loading…
Reference in a new issue