Home | History | Annotate | Download | only in tests

Lines Matching refs:in_file

62         in_file = TextFile(filename, strip_comments=0, skip_blanks=0,
65 test_input(1, "no processing", in_file, result1)
67 in_file.close()
69 in_file = TextFile(filename, strip_comments=1, skip_blanks=0,
72 test_input(2, "strip comments", in_file, result2)
74 in_file.close()
76 in_file = TextFile(filename, strip_comments=0, skip_blanks=1,
79 test_input(3, "strip blanks", in_file, result3)
81 in_file.close()
83 in_file = TextFile(filename)
85 test_input(4, "default processing", in_file, result4)
87 in_file.close()
89 in_file = TextFile(filename, strip_comments=1, skip_blanks=1,
92 test_input(5, "join lines without collapsing", in_file, result5)
94 in_file.close()
96 in_file = TextFile(filename, strip_comments=1, skip_blanks=1,
99 test_input(6, "join lines with collapsing", in_file, result6)
101 in_file.close()