bson/testdata/crud/v1/read/count-collation.yml
2025-03-17 20:58:26 +01:00

27 lines
701 B
YAML

data:
- {_id: 1, x: 'PING'}
minServerVersion: '3.4'
serverless: 'forbid'
tests:
-
description: "Count documents with collation"
operation:
name: countDocuments
arguments:
filter: { x: 'ping' }
collation: { locale: 'en_US', strength: 2 } # https://www.mongodb.com/docs/manual/reference/collation/#collation-document
outcome:
result: 1
-
description: "Deprecated count with collation"
operation:
name: count
arguments:
filter: { x: 'ping' }
collation: { locale: 'en_US', strength: 2 }
outcome:
result: 1