diff --git a/silently.cabal b/silently.cabal
--- a/silently.cabal
+++ b/silently.cabal
@@ -1,5 +1,5 @@
 name: silently
-version: 1.2
+version: 1.2.0.1
 cabal-version: >= 1.8
 build-type: Simple
 license: BSD3
diff --git a/test/Spec.hs b/test/Spec.hs
deleted file mode 100644
--- a/test/Spec.hs
+++ /dev/null
@@ -1,29 +0,0 @@
-module Main (main) where
-
-import           Test.Hspec.ShouldBe
-
-import           System.IO
-import           System.IO.Silently
-import           System.Directory
-
-import           Control.Exception
-
-main :: IO ()
-main = hspec spec
-
-spec :: Spec
-spec = do
-
-  describe "hSilence" $ do
-    it "prevents output to a given handle" $ let file = "test/foo.txt" in do
-      h <- openFile file ReadWriteMode
-      hSilence [h] $ do
-        hPutStrLn h "foo bar baz"
-        hFlush h
-      hSeek h AbsoluteSeek 0
-      hGetContents h `shouldReturn` ""
-      `finally` removeFile file
-
-  describe "capture" $ do
-    it "captures stdout" $ do
-      capture (putStr "foo" >> return 23) `shouldReturn` ("foo", 23 :: Int)
