diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,2 +1,5 @@
+0.0.2
+* Add missing test suite files.
+
 0.0.1
 * Initial release
diff --git a/tasty-tap.cabal b/tasty-tap.cabal
--- a/tasty-tap.cabal
+++ b/tasty-tap.cabal
@@ -1,5 +1,5 @@
 name:                tasty-tap
-version:             0.0.1
+version:             0.0.2
 synopsis:            TAP (Test Anything Protocol) Version 13 formatter for tasty
 description:         A tasty ingredient to output test results in TAP 13 format.
 license:             MIT
@@ -15,6 +15,7 @@
 extra-source-files:
   README.md
   changelog.md
+  test/golden/simple.tap
 
 source-repository head
   type: git
diff --git a/test/golden/simple.tap b/test/golden/simple.tap
new file mode 100644
--- /dev/null
+++ b/test/golden/simple.tap
@@ -0,0 +1,5 @@
+TAP version 13
+1..2
+ok 1 - some example tests/passes
+not ok 2 - some example tests/fails
+# this was doomed
