]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Import explicitly in Assertions.hs.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 4 Oct 2011 19:26:58 +0000 (15:26 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 4 Oct 2011 19:26:58 +0000 (15:26 -0400)
src/Assertions.hs

index 33b79b9b8ba68bb3dabc2002ad284498705bc335..b2ec7c15ef70fee0ad4b9c189ce9249b4c33b7f8 100644 (file)
@@ -5,10 +5,12 @@ module Assertions
 where
 
 import Control.Monad (unless)
-import Test.HUnit
+import Test.HUnit (Assertion,
+                   assertBool,
+                   assertFailure)
 
-import Comparisons
-import Point
+import Comparisons ((~=))
+import Point (Point, is_close)
 
 -- | An HUnit assertion that wraps the almost_equals function. Stolen
 --   from the definition of 'assertEqual' in Test\/HUnit\/Base.hs.
@@ -27,6 +29,7 @@ assertClose preface expected actual =
     where msg = (if null preface then "" else preface ++ "\n") ++
                 "expected: " ++ show expected ++ "\n but got: " ++ show actual
 
+
 -- | It's asinine that this doesn't exist already.
 assertTrue :: String -> Bool -> Assertion
 assertTrue = assertBool