diff --git a/cabal-test-quickcheck.cabal b/cabal-test-quickcheck.cabal
--- a/cabal-test-quickcheck.cabal
+++ b/cabal-test-quickcheck.cabal
@@ -1,5 +1,5 @@
 name:          cabal-test-quickcheck
-version:       0.1.3
+version:       0.1.4
 license:       MIT
 license-file:  LICENSE
 author:        Timothy Jones
@@ -27,20 +27,6 @@
     base       >= 4.6  && < 4.8,
     Cabal      >= 1.16 && < 1.23,
     QuickCheck >= 2.6  && < 2.8
-
-test-suite example
-  type:        detailed-0.9
-  test-module: Example
-
-  hs-source-dirs:   test
-  default-language: Haskell2010
-
-  ghc-options: -Wall -Werror
-
-  build-depends:
-    base  >= 4.6  && < 4.8,
-    Cabal >= 1.19 && < 1.23,
-    cabal-test-quickcheck
 
 source-repository head
   type:     git
diff --git a/dist/build/exampleStub/exampleStub-tmp/exampleStub.hs b/dist/build/exampleStub/exampleStub-tmp/exampleStub.hs
deleted file mode 100644
--- a/dist/build/exampleStub/exampleStub-tmp/exampleStub.hs
+++ /dev/null
@@ -1,5 +0,0 @@
-module Main ( main ) where
-import Distribution.Simple.Test.LibV09 ( stubMain )
-import Example ( tests )
-main :: IO ()
-main = stubMain tests
diff --git a/src/Distribution/TestSuite/QuickCheck.hs b/src/Distribution/TestSuite/QuickCheck.hs
--- a/src/Distribution/TestSuite/QuickCheck.hs
+++ b/src/Distribution/TestSuite/QuickCheck.hs
@@ -13,13 +13,12 @@
     , testGroup
     ) where
 
-------------------------------------------------------------------------------
-import Control.Applicative    ((<$>), (<|>))
-import Control.Monad          (foldM)
-import Data.List              (isSuffixOf, stripPrefix)
-import Data.Maybe             (catMaybes, fromMaybe)
-import Distribution.TestSuite hiding (Result)
-import Test.QuickCheck
+import           Control.Applicative    ((<$>), (<|>))
+import           Control.Monad          (foldM)
+import           Data.List              (isSuffixOf, stripPrefix)
+import           Data.Maybe             (catMaybes, fromMaybe)
+import           Distribution.TestSuite hiding (Result)
+import           Test.QuickCheck
 
 
 ------------------------------------------------------------------------------
diff --git a/test/Example.hs b/test/Example.hs
deleted file mode 100644
--- a/test/Example.hs
+++ /dev/null
@@ -1,25 +0,0 @@
-------------------------------------------------------------------------------
-module Example (tests) where
-
-------------------------------------------------------------------------------
-import Distribution.TestSuite.QuickCheck
-
-
-------------------------------------------------------------------------------
-tests :: IO [Test]
-tests = return
-    [ testProperty "Succeeds" True
-    , testProperty "Fails" False
-    , testGroup "May fail" mayFail
-    ]
-
-
-------------------------------------------------------------------------------
-mayFail :: [Test]
-mayFail =
-    [ testProperty "Maybe fails" neqNegation
-    , testProperty "Probably fails" $ not . neqNegation
-    ]
-
-neqNegation :: Int -> Bool
-neqNegation x = x /= -x
