Skip to content

Instantly share code, notes, and snippets.

@tomahim
Created August 30, 2018 10:01
Show Gist options
  • Save tomahim/96fa9be910d18851985d11d6330d12b2 to your computer and use it in GitHub Desktop.
Save tomahim/96fa9be910d18851985d11d6330d12b2 to your computer and use it in GitHub Desktop.
Dumb python unit test
import unittest
class TestDumbClass(unittest.TestCase):
def setUp(self):
pass
def test_useless_assert(self):
self.assertEqual('1', '1')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment