diff options
Diffstat (limited to 'print_test.go')
| -rw-r--r-- | print_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
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) +} |