OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
trial
/
_dist
/
test
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
118 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
test_distreporter.py
2 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
test_disttrial.py
12.88 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
test_options.py
1.28 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
test_worker.py
14.67 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
test_workerreporter.py
4.43 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
test_workertrial.py
4.9 KB
09/08/2017 10:38:36 AM
rw-r--r--
Editing: test_options.py
Close
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Tests for distributed trial's options management. """ import os, sys, gc from twisted.trial.unittest import TestCase from twisted.trial._dist.options import WorkerOptions class WorkerOptionsTests(TestCase): """ Tests for L{WorkerOptions}. """ def setUp(self): """ Build an L{WorkerOptions} object to be used in the tests. """ self.options = WorkerOptions() def test_standardOptions(self): """ L{WorkerOptions} supports a subset of standard options supported by trial. """ self.addCleanup(sys.setrecursionlimit, sys.getrecursionlimit()) if gc.isenabled(): self.addCleanup(gc.enable) gc.enable() self.options.parseOptions(["--recursionlimit", "2000", "--disablegc"]) self.assertEqual(2000, sys.getrecursionlimit()) self.assertFalse(gc.isenabled()) def test_coverage(self): """ L{WorkerOptions.coverdir} returns the C{coverage} child directory of the current directory to be used for storing coverage data. """ self.assertEqual( os.path.realpath(os.path.join(os.getcwd(), "coverage")), self.options.coverdir().path)