* @throws Exception If some problem inside.
*/
@Test
public void canCreateDistinctDeployKeys() throws Exception {
final DeployKeys keys = MkDeployKeysTest.repo().keys();
final DeployKey first = keys.create("Title2", "Key2");
final DeployKey second = keys.create("Title3", "Key3");
MatcherAssert.assertThat(
first,
Matchers.not(Matchers.is(second))
);