test_template.py 251 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import pandas as pd import unittest class TestStuff(unittest.TestCase): def test_something(self): self.assertEqual(2+1, 3) if __name__ == '__main__': # unittest.main() t = TestStuff() t.test_something()