diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-12 16:45:00 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-12 16:45:00 -0400 |
| commit | 520f392ca5207f5364bbed501615613e3485b84b (patch) | |
| tree | 9f569676ef804f145935d9540f156d949e67e759 /print_test.go | |
| parent | 9010ebe8a581fb9db7bc6e97d40ff062fb18495f (diff) | |
| download | lulu-520f392ca5207f5364bbed501615613e3485b84b.zip | |
implement GET /print-jobs
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) +} |