Sha256: 9f9ca79c41a1d25f7739b91072a75855f060b86db4f4efda4c1957f059563efb
Contents?: true
Size: 1.58 KB
Versions: 70
Compression:
Stored size: 1.58 KB
Contents
tests: - description: "Valid read and write concern are parsed correctly" uri: "mongodb://example.com/?readConcernLevel=majority&w=5&wTimeoutMS=30000&journal=false" valid: true warning: false hosts: ~ auth: ~ options: readConcernLevel: "majority" w: 5 wTimeoutMS: 30000 journal: false - description: "Arbitrary string readConcernLevel does not cause a warning" uri: "mongodb://example.com/?readConcernLevel=arbitraryButStillValid" valid: true warning: false hosts: ~ auth: ~ options: readConcernLevel: "arbitraryButStillValid" - description: "Arbitrary string w doesn't cause a warning" uri: "mongodb://example.com/?w=arbitraryButStillValid" valid: true warning: false hosts: ~ auth: ~ options: w: "arbitraryButStillValid" - description: "Non-numeric wTimeoutMS causes a warning" uri: "mongodb://example.com/?wTimeoutMS=invalid" valid: true warning: true hosts: ~ auth: ~ options: {} - description: "Too low wTimeoutMS causes a warning" uri: "mongodb://example.com/?wTimeoutMS=-2" valid: true warning: true hosts: ~ auth: ~ options: {} - description: "Invalid journal causes a warning" uri: "mongodb://example.com/?journal=invalid" valid: true warning: true hosts: ~ auth: ~ options: {}
Version data entries
70 entries across 70 versions & 3 rubygems