boolean ok = false;
ok = client.bury(0, 65536);
assertFalse(ok);
// producer
client.useTube((String) tubeNames[1]);
long jobId = client.put(65536, 0, 120, srcString.getBytes());
assertTrue(jobId > 0);
// we haven't reserved, so we can't bury
ok = client.bury(jobId, 65536);