Current Path: > > opt > cloudlinux > > venv > > > > lib64 > python3.11 > site-packages > guppy > heapy > test
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 47 bytes | April 17 2025 13:10:58. | |
support.py | File | 3814 bytes | April 17 2025 13:10:58. | |
test_Classifiers.py | File | 29059 bytes | April 17 2025 13:10:58. | |
test_ER.py | File | 12858 bytes | April 17 2025 13:10:58. | |
test_OutputHandling.py | File | 1376 bytes | April 17 2025 13:10:58. | |
test_Part.py | File | 10398 bytes | April 17 2025 13:10:58. | |
test_Path.py | File | 29516 bytes | April 17 2025 13:10:58. | |
test_RefPat.py | File | 17156 bytes | April 17 2025 13:10:58. | |
test_RetaGraph.py | File | 95 bytes | April 17 2025 13:10:58. | |
test_Spec.py | File | 351 bytes | April 17 2025 13:10:58. | |
test_UniSet.py | File | 1241 bytes | April 17 2025 13:10:58. | |
test_View.py | File | 8180 bytes | April 17 2025 13:10:58. | |
test_all.py | File | 682 bytes | April 17 2025 13:10:58. | |
test_dependencies.py | File | 214 bytes | April 17 2025 13:10:58. | |
test_gsl.py | File | 421 bytes | April 17 2025 13:10:58. | |
test_heapyc.py | File | 15972 bytes | April 17 2025 13:10:58. | |
test_menuleak.py | File | 3196 bytes | April 17 2025 13:10:58. | |
test_sf.py | File | 583 bytes | April 17 2025 13:10:58. |
from guppy.heapy.test import support class FirstCase(support.TestCase): def setUp(self): support.TestCase.setUp(self) self.OH = self.heapy.OutputHandling def test_1(self): class T: def __init__(self, test, numlines, get_num_lines=None, get_more_msg=None): mod = test.OH def get_line_iter(): for i in range(numlines): yield '%d' % i self.mod = mod mod.setup_printing( self, get_line_iter=get_line_iter, max_more_lines=4, get_num_lines=get_num_lines, get_more_msg=get_more_msg) self.aseq(str(T(self, 4)), '0\n1\n2\n3') t = T(self, 6, lambda: 6) self.aseq( str(t), "0\n1\n2\n3\n<Lines 0..3 of 6. Type e.g. '_.more' for more.>") x = t.more self.aseq(str(x), '4\n5') self.aseq( str(x.top), "0\n1\n2\n3\n<Lines 0..3 of 6. Type e.g. '_.more' for more.>") self.aseq(str(x.all), "0\n1\n2\n3\n4\n5") t = T(self, 6, get_more_msg=lambda f, t: '<%d more rows>' % (6-t)) self.aseq(str(t), '0\n1\n2\n3\n<3 more rows>') def test_main(debug=0): support.run_unittest(FirstCase, debug) if __name__ == "__main__": test_main()
SILENT KILLER Tool