From eca9f96fbf9b6be62915d111546f4798ce3fac62 Mon Sep 17 00:00:00 2001
From: Kurt Jung <kurt.w.jung@gmail.com>
Date: Sun, 11 Oct 2015 09:16:21 -0400
Subject: Move default assignments to init function of example file from
 various test files. Now any package that imports the example package will
 generate PDFs with sorted catalogs and a fixed creation timestamp.

---
 internal/example/example.go | 3 +++
 1 file changed, 3 insertions(+)

(limited to 'internal/example')

diff --git a/internal/example/example.go b/internal/example/example.go
index b29561c..56ffb23 100644
--- a/internal/example/example.go
+++ b/internal/example/example.go
@@ -22,6 +22,7 @@ import (
 	"os"
 	"path/filepath"
 	"strings"
+	"time"
 
 	"github.com/jung-kurt/gofpdf"
 )
@@ -30,6 +31,8 @@ var gofpdfDir string
 
 func init() {
 	setRoot()
+	gofpdf.SetDefaultCatalogSort(true)
+	gofpdf.SetDefaultCreationDate(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC))
 }
 
 // Assign the relative path to the gofpdfDir directory based on current working
-- 
cgit v1.2.1-24-ge1ad