Add authentication_source option to register_connection #178 #464 #573 #580 #590

This commit is contained in:
Ross Lawley 2014-06-27 11:59:35 +01:00
parent cb3fca03e9
commit 47ebac0276
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ Changelog
Changes in 0.9.X - DEV Changes in 0.9.X - DEV
====================== ======================
- Add authentication_source option to register_connection #178 #464 #573 #580 #590
- Implemented equality between Documents and DBRefs #597 - Implemented equality between Documents and DBRefs #597
- Fixed ReferenceField inside nested ListFields dereferencing problem #368 - Fixed ReferenceField inside nested ListFields dereferencing problem #368
- Added the ability to reload specific document fields #100 - Added the ability to reload specific document fields #100

View File

@ -48,7 +48,7 @@ class ConnectionTest(unittest.TestCase):
connect('mongoenginetest', alias='testdb2') connect('mongoenginetest', alias='testdb2')
actual_connection = get_connection('testdb2') actual_connection = get_connection('testdb2')
self.assertIs(expected_connection, actual_connection) self.assertEqual(expected_connection, actual_connection)
def test_connect_uri(self): def test_connect_uri(self):
"""Ensure that the connect() method works properly with uri's """Ensure that the connect() method works properly with uri's