Skip to content

Commit b6bf9ff

Browse files
Merge pull request ably#636 from ably/fix/590-idempotent-rest-publishing
Add unit test for idempotentRestPublishing in ClientOptions
2 parents 9621342 + ca7d633 commit b6bf9ff

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package io.ably.lib.types;
2+
3+
import static org.junit.Assert.assertTrue;
4+
5+
import org.junit.Test;
6+
7+
public class ClientOptionsTest {
8+
9+
private final ClientOptions clientOptions = new ClientOptions();
10+
11+
@Test
12+
public void should_support_idempotent_rest_publishing() {
13+
// Then
14+
assertTrue(clientOptions.idempotentRestPublishing);
15+
}
16+
}

0 commit comments

Comments
 (0)