1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
tests:
-
description: "Default"
uri: "mongodb://localhost/"
valid: true
warning: false
readConcern: { }
-
description: "local specified"
uri: "mongodb://localhost/?readConcernLevel=local"
valid: true
warning: false
readConcern: { level: "local" }
-
description: "majority specified"
uri: "mongodb://localhost/?readConcernLevel=majority"
valid: true
warning: false
readConcern: { level: "majority" }
-
description: "available specified"
uri: "mongodb://localhost?readConcernLevel=available"
valid: true
warning: false
readConcern: { level: "available" }
-
description: "snapshot specified"
uri: "mongodb://localhost?readConcernLevel=snapshot"
valid: true
warning: false
readConcern: { level: "snapshot" }
-
description: "linearizable specified"
uri: "mongodb://localhost?readConcernLevel=linearizable"
valid: true
warning: false
readConcern: { level: "linearizable" }
|