]> gitweb.michael.orlitzky.com - hath.git/blobdiff - src/Octet.hs
Added type signatures for all of the tests.
[hath.git] / src / Octet.hs
index efc19d5607550e98da3bd47221fecb403e76d9e6..04caae54fa6bcefab22d28415f5e2e8f6aa81064 100644 (file)
@@ -73,10 +73,12 @@ max_octet = Octet One One One One One One One One
 
 
 -- HUnit Tests
+test_octet_from_int1 :: Test
 test_octet_from_int1 =
     TestCase $ assertEqual "octet_from_int 128 should parse as 10000000" oct1 (octet_from_int 128)
     where
       oct1 = Octet One Zero Zero Zero Zero Zero Zero Zero
 
 
+octet_tests :: [Test]
 octet_tests = [ test_octet_from_int1 ]