From 31ba15f5a93e8bb34a0075ef60cde80941622fed Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 30 Oct 2024 20:56:52 +0000 Subject: [PATCH] use partial functions in tests I claim that it's ok because if the match is non-exhaustive then the test will fail anyway --- tests/UnitTest.hs | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/tests/UnitTest.hs b/tests/UnitTest.hs index a31c9bf..08a35d9 100644 --- a/tests/UnitTest.hs +++ b/tests/UnitTest.hs @@ -69,32 +69,28 @@ testMalformed = TestCase $ test2 = TestCase $ either (assertFailure . displayException) - (\ trk -> case trk of - p:_ -> - assertEqual "matches lat/lon" - (Track.Pos 51.0 (-0.1)) - (Track.pos p) - [] -> assertFailure "no points") + (\ (p:_) -> + assertEqual "matches lat/lon" + (Track.Pos 51.0 (-0.1)) + (Track.pos p)) (Track.parse onepoint) test3 = TestCase $ - case Track.parse onepoint - of - Left err -> assertFailure (displayException err) - Right (p:ps) -> - assertEqual "matches attributes" - (Nothing, Nothing) (Track.elevation p, Track.cadence p) - Right [] -> assertFailure "no points" + either + (assertFailure . displayException) + (\ (p:_) -> + assertEqual "handles missing attributes" + (Nothing, Nothing) (Track.elevation p, Track.cadence p)) + (Track.parse onepoint) test4 = TestCase $ - case Track.parse onepointWithAttrs - of - Left err -> assertFailure (displayException err) - Right (p:ps) -> - assertEqual "matches attributes" + either + (assertFailure . displayException) + (\ (p:_) -> + assertEqual "handles attributes" (Just 25.2, Just 128, Just 55, Data.Time.UTCTime (toEnum 60606) 27299.779) - (Track.elevation p, Track.cadence p, Track.power p, Track.time p) - Right [] -> assertFailure "no points" + (Track.elevation p, Track.cadence p, Track.power p, Track.time p)) + (Track.parse onepointWithAttrs) tests :: Test tests = TestList [