Created
August 30, 2018 10:01
-
-
Save tomahim/96fa9be910d18851985d11d6330d12b2 to your computer and use it in GitHub Desktop.
Dumb python unit test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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