improve test for missing ele

This commit is contained in:
Daniel Barlow 2024-10-25 00:11:58 +01:00
parent 2204a53a4f
commit 94a8987828

View File

@ -24,7 +24,8 @@ specs =
in
case Track.parse xml of
Ok (p::pts) ->
Expect.equal p (Point (51.600643, -0.01856, Nothing) (Just (Time.millisToPosix 1729669252256)) (Just 89))
case p.loc of
(_, _, ele) -> Expect.equal ele Nothing
Ok _ -> Expect.fail "empty list"
(Err f) -> Expect.fail f