diff --git a/ginger.cabal b/ginger.cabal
--- a/ginger.cabal
+++ b/ginger.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                ginger
-version:             0.3.7.1
+version:             0.3.7.2
 synopsis:            An implementation of the Jinja2 template language in Haskell
 description:         Ginger is Jinja, minus the most blatant pythonisms. Wants
                      to be feature complete, but isn't quite there yet.
@@ -15,7 +15,9 @@
 category:            Text
 build-type:          Simple
 -- extra-source-files:
+data-files: test/fixtures/*.json
 cabal-version:       >=1.10
+bug-reports:         https://github.com/tdammers/ginger/issues
 
 library
   exposed-modules: Text.Ginger
diff --git a/test/fixtures/silly-locale.json b/test/fixtures/silly-locale.json
new file mode 100644
--- /dev/null
+++ b/test/fixtures/silly-locale.json
@@ -0,0 +1,90 @@
+{
+   "dateTimeFmt" : "It be %A, in the year %y, the clock striketh %H",
+   "wDays" : [
+      [
+         "The Day Of Sunshine",
+         "Sun"
+      ],
+      [
+         "The Day Of Monning",
+         "Mon"
+      ],
+      [
+         "The Day Of Two",
+         "Tue"
+      ],
+      [
+         "The Midst Of The Week",
+         "Wed"
+      ],
+      [
+         "The Day Of Thor",
+         "Thu"
+      ],
+      [
+         "The Day Of Freya",
+         "Fri"
+      ],
+      [
+         "The Day Of Saturn",
+         "Sat"
+      ]
+   ],
+   "amPm" : [
+      "Morning",
+      "Evening"
+   ],
+   "timeFmt" : "%H o'clock",
+   "months" : [
+      [
+         "January",
+         "Jan"
+      ],
+      [
+         "February",
+         "Feb"
+      ],
+      [
+         "March",
+         "Mar"
+      ],
+      [
+         "April",
+         "Apr"
+      ],
+      [
+         "May",
+         "May"
+      ],
+      [
+         "June",
+         "Jun"
+      ],
+      [
+         "July",
+         "Jul"
+      ],
+      [
+         "August",
+         "Aug"
+      ],
+      [
+         "September",
+         "Sep"
+      ],
+      [
+         "October",
+         "Oct"
+      ],
+      [
+         "November",
+         "Nov"
+      ],
+      [
+         "December",
+         "Dec"
+      ]
+   ],
+   "time12Fmt" : "%I:%M:%S %p",
+   "dateFmt" : "%d-%m, %y"
+}
