@Test
public final void testInfo() throws IOException, MandrillApiError {
final MandrillWebhook[] webhooks = mandrillApi.webhooks().list();
Assert.assertNotNull(webhooks);
if(webhooks.length > 0) {
final MandrillWebhook w = mandrillApi.webhooks().info(
webhooks[0].getId());
Assert.assertNotNull(w);
Assert.assertEquals(webhooks[0].getId(), w.getId());
}
}