Write used-id integration tests

This commit is contained in:
Tankred Hase
2016-05-31 11:02:27 +02:00
parent f930ee38e9
commit 2abeb8ece2
4 changed files with 132 additions and 23 deletions

View File

@@ -26,9 +26,9 @@ class Mongo {
/**
* Create an instance of the MongoDB client.
* @param {String} options.uri The mongodb uri
* @param {String} options.user The databse user
* @param {String} options.password The database user's password
* @param {String} uri The mongodb uri
* @param {String} user The databse user
* @param {String} password The database user's password
*/
constructor(options) {
this._uri = 'mongodb://' + options.user + ':' + options.password + '@' + options.uri;