Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active March 3, 2019 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/0e6af5fe96c2c4dcb5eb983e8b55ec15 to your computer and use it in GitHub Desktop.
Save NMZivkovic/0e6af5fe96c2c4dcb5eb983e8b55ec15 to your computer and use it in GitHub Desktop.
import unittest
from citadel import Citadel
class CitadelTests(unittest.TestCase):
def test_get_all_residents(self):
citadel = Citadel()
residents = citadel.get_all_residents()
self.assertCountEqual(residents, [])
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment