Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active March 2, 2019 11:13
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/e161ca4d83b39105bc94cb50f7fcf829 to your computer and use it in GitHub Desktop.
Save NMZivkovic/e161ca4d83b39105bc94cb50f7fcf829 to your computer and use it in GitHub Desktop.
import unittest
class FirstTestClass(unittest.TestCase):
def test_upper(self):
self.assertEqual('rubiks code'.upper(), 'RUBIKS CODE')
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment