Home | History | Annotate | Download | only in test

Lines Matching refs:uu

2 Tests for uu module.
10 import uu
56 uu.encode(inp, out, "t1")
60 uu.encode(inp, out, "t1", 0o644)
66 uu.decode(inp, out)
74 uu.decode(inp, out)
81 uu.decode(inp, out)
83 except uu.Error as e:
90 uu.decode(inp, out)
92 except uu.Error as e:
106 with self.subTest("uu.decode()"):
109 uu.decode(inp, out, quiet=True)
130 uu.encode("-", "-", "t1", 0o666)
137 uu.decode("-", "-")
180 uu.encode(fin, fout, self.tmpin, mode=0o644)
190 uu.encode(self.tmpin, self.tmpout, self.tmpin, mode=0o644)
209 uu.decode(f)
228 uu.decode(self.tmpin)
244 uu.decode(f)
248 self.assertRaises(uu.Error, uu.decode, f)