diff --git a/tests/fixtures/getUser.sql b/tests/fixtures/getUser.sql
new file mode 100644
--- /dev/null
+++ b/tests/fixtures/getUser.sql
@@ -0,0 +1,3 @@
+-- :: [(Int, String)]
+-- :userID :: Int
+SELECT id, username FROM users WHERE id = :userID
diff --git a/tests/fixtures/getUserNamed.sql b/tests/fixtures/getUserNamed.sql
new file mode 100644
--- /dev/null
+++ b/tests/fixtures/getUserNamed.sql
@@ -0,0 +1,3 @@
+-- name:getUser :: [(Int, String)]
+-- :userID :: Int
+SELECT id, username FROM users WHERE id = :userID
diff --git a/tests/fixtures/multiQueries.sql b/tests/fixtures/multiQueries.sql
new file mode 100644
--- /dev/null
+++ b/tests/fixtures/multiQueries.sql
@@ -0,0 +1,7 @@
+-- :: rowcount Integer
+BLAH
+;;;
+-- name: multiQueriesNamed :: rowcount Integer
+PIZZA
+;;;
+OLIVES
diff --git a/yeshql.cabal b/yeshql.cabal
--- a/yeshql.cabal
+++ b/yeshql.cabal
@@ -1,5 +1,5 @@
 name: yeshql
-version: 3.0.1.1
+version: 3.0.1.2
 synopsis: YesQL-style SQL database abstraction
 description: Use quasi-quotations or TemplateHaskell to write SQL in SQL, while
              adding type annotations to turn SQL into well-typed Haskell
@@ -12,6 +12,7 @@
 category: Database
 build-type: Simple
 extra-source-files: README.md
+                  , tests/fixtures/*.sql
 cabal-version: >=1.10
 
 library
