diff --git a/mustache.cabal b/mustache.cabal
--- a/mustache.cabal
+++ b/mustache.cabal
@@ -1,5 +1,5 @@
 name:                mustache
-version:             2.0
+version:             2.0.1
 synopsis:            A mustache template parser library.
 description:
   Allows parsing and rendering template files with mustache markup. See the
@@ -17,7 +17,10 @@
 copyright:           (c) 2015, 2016 Justus Adam
 category:            Development
 build-type:          Simple
-extra-source-files:  README.md CHANGELOG.md
+extra-source-files:  README.md
+                   , CHANGELOG.md
+                   , test/unit/examples/*.txt.mustache
+                   , test/unit/examples/partials/*.txt.mustache
 cabal-version:       >=1.10
 tested-with:         GHC >=7.8 && <= 7.10.2
 
diff --git a/test/unit/examples/partials/test-partial.txt.mustache b/test/unit/examples/partials/test-partial.txt.mustache
new file mode 100644
--- /dev/null
+++ b/test/unit/examples/partials/test-partial.txt.mustache
@@ -0,0 +1,1 @@
+and {{ partials }}
diff --git a/test/unit/examples/test-template-partials.txt.mustache b/test/unit/examples/test-template-partials.txt.mustache
new file mode 100644
--- /dev/null
+++ b/test/unit/examples/test-template-partials.txt.mustache
@@ -0,0 +1,1 @@
+This {{ template }} was injected at compile time with an embedded file {{> test-partial.txt.mustache }}
diff --git a/test/unit/examples/test-template.txt.mustache b/test/unit/examples/test-template.txt.mustache
new file mode 100644
--- /dev/null
+++ b/test/unit/examples/test-template.txt.mustache
@@ -0,0 +1,1 @@
+This {{ template }} was injected at compile time with an embedded file
