diff --git a/servant-static-th.cabal b/servant-static-th.cabal
--- a/servant-static-th.cabal
+++ b/servant-static-th.cabal
@@ -1,6 +1,6 @@
 name:                servant-static-th
-version:             0.1.0.1
-synopsis:            Embed a directory of static files in your application and serve them from your Servant server
+version:             0.1.0.2
+synopsis:            Embed a directory of static files in your app and serve them from a Servant server
 description:         Please see <https://github.com/cdepillabout/servant-static-th#readme README.md>.
 homepage:            https://github.com/cdepillabout/servant-static-th
 license:             BSD3
@@ -11,6 +11,9 @@
 category:            Text
 build-type:          Simple
 extra-source-files:  README.md
+                   , test/test-dir/dir/inner-file.html
+                   , test/test-dir/dir/test.js
+                   , test/test-dir/hello.html
 cabal-version:       >=1.10
 
 flag buildexample
diff --git a/test/test-dir/dir/inner-file.html b/test/test-dir/dir/inner-file.html
new file mode 100644
--- /dev/null
+++ b/test/test-dir/dir/inner-file.html
@@ -0,0 +1,1 @@
+Inner File
diff --git a/test/test-dir/dir/test.js b/test/test-dir/dir/test.js
new file mode 100644
--- /dev/null
+++ b/test/test-dir/dir/test.js
@@ -0,0 +1,1 @@
+console.log("hello world");
diff --git a/test/test-dir/hello.html b/test/test-dir/hello.html
new file mode 100644
--- /dev/null
+++ b/test/test-dir/hello.html
@@ -0,0 +1,1 @@
+Hello World
