Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created March 3, 2019 09:54
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/a3462a3bedf28672d0d8d5fa56efcf88 to your computer and use it in GitHub Desktop.
Save NMZivkovic/a3462a3bedf28672d0d8d5fa56efcf88 to your computer and use it in GitHub Desktop.
import unittest
from morty import Morty
class MortyTests(unittest.TestCase):
def test_universe(self):
morty = Morty(111)
self.assertEqual(morty.universe, 111)
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment