We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f758ba commit a0af03cCopy full SHA for a0af03c
Tests/RediStackIntegrationTests/Commands/PubSubCommandsTests.swift
@@ -189,6 +189,14 @@ final class RedisPubSubCommandsTests: RediStackIntegrationTestCase {
189
self.waitForExpectations(timeout: 1)
190
}
191
192
+ func test_pubSubNumpat() throws {
193
+ let queryConnection = try self.makeNewConnection()
194
+ defer { try? queryConnection.close().wait() }
195
+
196
+ let numPat = try queryConnection.patternSubscriberCount().wait()
197
+ XCTAssertGreaterThanOrEqual(numPat, 0)
198
+ }
199
200
func test_pubSubChannels() throws {
201
let fn = #function
202
let subscriber = try self.makeNewConnection()
0 commit comments