def test_read_file_ok(self): output = sedsed.read_file(__file__) self.assertEqual(output[0], "# Unit tests for sedsed")
def test_read_file_not_found(self): with self.assertRaises(SystemExit): sedsed.read_file("404.txt")