Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active March 3, 2019 09:49
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/bd5b7b29b42d43456801ef2dc53473f6 to your computer and use it in GitHub Desktop.
Save NMZivkovic/bd5b7b29b42d43456801ef2dc53473f6 to your computer and use it in GitHub Desktop.
import unittest
from rick import Rick
class RickTests(unittest.TestCase):
def test_universe(self):
rick = Rick(111)
self.assertEqual(rick.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