This commit is contained in:
parent
cb3fca03e9
commit
47ebac0276
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user