From 520f392ca5207f5364bbed501615613e3485b84b Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Tue, 12 May 2026 16:45:00 -0400 Subject: implement GET /print-jobs --- print_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'print_test.go') diff --git a/print_test.go b/print_test.go index 9e51095..d14c529 100644 --- a/print_test.go +++ b/print_test.go @@ -6,6 +6,7 @@ import ( "time" "github.com/shopspring/decimal" + "github.com/stretchr/testify/require" ) //go:embed testdata/getprintjobsresp.json @@ -113,3 +114,10 @@ func TestUnmarshalGetPrintJobsResp(t *testing.T) { requireUnmarshalJsonEq(t, want, getPrintJobsRespJson) } + +func TestPrintJobs(t *testing.T) { + t.Fail() // TODO: create a few print jobs and retrieve them + c := newClient(t) + _, err := c.PrintJobs() + require.NoError(t, err) +} -- cgit v1.2.3