def test4(self): arr_path=list(filter_arr(find_all_files("test"),["\.csv$"])); print(arr_path)
def test3(self): l= list(filter_arr(["abc","def","ghi"], ["bc"],True)) self.assertListEqual(l, ["def","ghi"])