Skip to content

Instantly share code, notes, and snippets.

@RyanNutt
Created September 20, 2020 14:43
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 RyanNutt/75fcb644b02f5519e55887ec9219e0f4 to your computer and use it in GitHub Desktop.
Save RyanNutt/75fcb644b02f5519e55887ec9219e0f4 to your computer and use it in GitHub Desktop.
Python unittest starter stub
import unittest
class TestClass(unittest.TestCase):
def test(self):
exp = 4
actual = 4
self.assertEqual(exp, actual, 'Some Message')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment