@Test
public void canRepresentAsJson() throws Exception {
final DeployKeys keys = MkDeployKeysTest.repo().keys();
final DeployKey first = keys.create("Title4", "Key4");
MatcherAssert.assertThat(
first.json().toString(),
Matchers.allOf(
Matchers.containsString("\"title\":\"Title4\""),
Matchers.containsString("\"key\":\"Key4\"")
)
);