0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-20 11:38:20 +02:00

Use new assertObjectHasAttributes() in tests/storage/test_room.py

This commit is contained in:
Paul "LeoNerd" Evans 2014-09-17 16:04:05 +01:00
parent 7aacd6834a
commit ba41ca45fa

View file

@ -50,9 +50,12 @@ class RoomStoreTestCase(unittest.TestCase):
def test_get_room(self):
room = yield self.store.get_room(self.room.to_string())
self.assertEquals(self.room.to_string(), room.room_id)
self.assertEquals(self.u_creator.to_string(), room.creator)
self.assertTrue(room.is_public)
self.assertObjectHasAttributes(
{"room_id": self.room.to_string(),
"creator": self.u_creator.to_string(),
"is_public": True},
room
)
@defer.inlineCallbacks
def test_store_room_config(self):