diff --git a/CHANGELOG.txt b/CHANGELOG.txt
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,7 @@
+0.7.9, 2016-07-02:
+	Add missing Utils module to test suite, so that the tests provided with
+	the sdist tarball actually run.
+
 0.7.8, 2016-07-01:
 	Add dependency on transformers-compat to allow using
 	Control.Monad.Trans.Except also with older library versions.
diff --git a/Glob.cabal b/Glob.cabal
--- a/Glob.cabal
+++ b/Glob.cabal
@@ -1,7 +1,7 @@
 Cabal-Version: >= 1.9.2
 
 Name:        Glob
-Version:     0.7.8
+Version:     0.7.9
 Homepage:    http://iki.fi/matti.niemenmaa/glob/
 Synopsis:    Globbing library
 Category:    System
@@ -85,3 +85,4 @@
                   Tests.Regression
                   Tests.Simplifier
                   Tests.Utils
+                  Utils
diff --git a/tests/Utils.hs b/tests/Utils.hs
new file mode 100644
--- /dev/null
+++ b/tests/Utils.hs
@@ -0,0 +1,11 @@
+-- File created: 2008-10-15 20:50:31
+
+module Utils where
+
+fromRight (Right x) = x
+fromRight _         = error "fromRight :: Left"
+
+isRight (Right _) = True
+isRight _         = False
+
+a --> b = not a || b
