Current Path: > > opt > cloudlinux > venv > lib > > 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) def test_1(self): asrt = self.assertTrue a = [] b = [] c = self.iso(a, b) asrt(len(c.nodes) == 2) asrt(a in c) asrt(b in c) asrt([] not in c) asrt(c not in c) d = self.idset(c.nodes) asrt(c.nodes == d.nodes) asrt(c == d) def test_2(self): # Test standard set operations H = self.idset e1 = [] e2 = {} e3 = () la = [], [e1], [e1, e2], [e1, e2, e3], [e2], [e2, e3], [e3] self.guppy.sets.test.test_set_operations( [H(x) for x in la], [H(x) for x in la], [H(x) for x in la]) def test_3(self): # Test out-reaching iso = self.iso a = [] b = [a] c = [b] self.View.root = c x = iso(b) self.assertTrue(x.referrers == iso(c)) self.aseq(x.referents, iso(a)) self.aseq(x.referents.referrers, x) self.aseq(x.dominos, iso(a, b)) def test_main(debug=False): support.run_unittest(FirstCase, debug) if __name__ == "__main__": test_main()
SILENT KILLER Tool