]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Assertions.hs
Import cleanup in Assertions.
[spline3.git] / src / Assertions.hs
index 4e09b82974f301762dcdefcd0253e50ceeec3459..023cf6503adc11b8bf7d6b26d3aad6193c4b1612 100644 (file)
@@ -1,15 +1,19 @@
 -- | The Assertions module contains assertions for use in HUnit
 --   tests. They primarily fill the need for an equality test that
 --   works with floating point numbers.
-module Assertions
+--
+module Assertions (
+  assertAlmostEqual,
+  assertTrue )
 where
 
-import Control.Monad (unless)
-import Test.HUnit (Assertion,
-                   assertBool,
-                   assertFailure)
+import Control.Monad ( unless )
+import Test.HUnit (
+  Assertion,
+  assertBool,
+  assertFailure )
 
-import Comparisons ((~=))
+import Comparisons ( (~=) )
 
 
 -- | An HUnit assertion that wraps the almost_equals function. Stolen