diff options
| author | Kurt Jung <kurt.w.jung@gmail.com> | 2015-10-11 07:27:08 -0400 | 
|---|---|---|
| committer | Kurt Jung <kurt.w.jung@gmail.com> | 2015-10-11 07:27:08 -0400 | 
| commit | d51a8d74b25e9e8b342e0a620c8afdfe155c3e09 (patch) | |
| tree | a1c4f9e518d03033fc3eb46250814e8fd8f8fc44 /contrib/httpimg | |
| parent | 92858a8b5ff04e4196597d9d517f3b2a0d651579 (diff) | |
Include catalog sort and creation date assignment so that tests of contributed packages can be run
Diffstat (limited to 'contrib/httpimg')
| -rw-r--r-- | contrib/httpimg/httpimg_test.go | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/contrib/httpimg/httpimg_test.go b/contrib/httpimg/httpimg_test.go index bf13492..6390f09 100644 --- a/contrib/httpimg/httpimg_test.go +++ b/contrib/httpimg/httpimg_test.go @@ -1,11 +1,18 @@  package httpimg_test  import ( +	"time" +  	"github.com/jung-kurt/gofpdf"  	"github.com/jung-kurt/gofpdf/contrib/httpimg"  	"github.com/jung-kurt/gofpdf/internal/example"  ) +func init() { +	gofpdf.SetDefaultCatalogSort(true) +	gofpdf.SetDefaultCreationDate(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)) +} +  func ExampleRegister() {  	pdf := gofpdf.New("L", "mm", "A4", "")  	pdf.SetFont("Helvetica", "", 12) | 
