source: exampleparties/randomparty/test/PartyTest.py@ 72

Last change on this file since 72 was 72, checked in by Bart Vastenhouw, 3 years ago

Reduced memory need of websockets.

File size: 222 bytes
Line 
1import unittest
2from geniusweb.party.Party import Party
3
4
5class PartyTest(unittest.TestCase):
6 def testPartyDefined(self):
7 import party
8 clas=party.party()
9 self.assertTrue(issubclass(clas, Party))
Note: See TracBrowser for help on using the repository browser.