test_simple.py 168 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 # -*- coding: utf-8 -*- import unittest import simple class TestSimple(unittest.TestCase): def test_foobar(self): self.assertEqual(simple.foobar(), 42)