Sha256: 5b1a0db1f6e22f376b467de507158073a5dd87b3ff25d19a822bcc4edd9aad2b
Contents?: true
Size: 1.41 KB
Versions: 14
Compression:
Stored size: 1.41 KB
Contents
description: "server-connection-id" schemaVersion: "1.6" runOnRequirements: - minServerVersion: "4.2" createEntities: - client: id: &client client observeEvents: - commandStartedEvent - commandSucceededEvent - commandFailedEvent - database: id: &database database client: *client databaseName: &databaseName server-connection-id-tests - collection: id: &collection collection database: *database collectionName: &collectionName coll initialData: - databaseName: *databaseName collectionName: *collectionName documents: [] tests: - description: "command events include server connection id" operations: - name: insertOne object: *collection arguments: document: { x: 1 } - name: find object: *collection arguments: filter: { $or: true } expectError: isError: true expectEvents: - client: *client events: - commandStartedEvent: commandName: insert hasServerConnectionId: true - commandSucceededEvent: commandName: insert hasServerConnectionId: true - commandStartedEvent: commandName: find hasServerConnectionId: true - commandFailedEvent: commandName: find hasServerConnectionId: true
Version data entries
14 entries across 14 versions & 2 rubygems