import unittest import os class Day3(unittest.TestCase): inputfile = os.path.join(os.path.dirname(__file__), "day3_input") def test_day3a(self): with open(self.inputfile) as fp: steps = fp.readline().split(',') pass if __name__ == "__main__": unittest.main()