Skip to content

Commit

Permalink
Merge pull request #636 from ably/fix/590-idempotent-rest-publishing
Browse files Browse the repository at this point in the history
Add unit test for idempotentRestPublishing in ClientOptions
  • Loading branch information
QuintinWillison authored Dec 21, 2020
2 parents 9621342 + ca7d633 commit b6bf9ff
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/src/test/java/io/ably/lib/types/ClientOptionsTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package io.ably.lib.types;

import static org.junit.Assert.assertTrue;

import org.junit.Test;

public class ClientOptionsTest {

private final ClientOptions clientOptions = new ClientOptions();

@Test
public void should_support_idempotent_rest_publishing() {
// Then
assertTrue(clientOptions.idempotentRestPublishing);
}
}

0 comments on commit b6bf9ff

Please sign in to comment.