diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2023-05-29 16:45:49 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2023-05-29 16:45:49 +0100 |
commit | 31ff94add9c4043a753683d9e8b68733c69aa1ac (patch) | |
tree | 1737c36a2641129a4de775c6058cc07b9cdca0f6 /test/unit/option.py | |
parent | f55818059c01ff9e61bee8107ed1389fe272a787 (diff) | |
download | unit-31ff94add9c4043a753683d9e8b68733c69aa1ac.tar.gz unit-31ff94add9c4043a753683d9e8b68733c69aa1ac.tar.bz2 |
Tests: more fixtures.
Common methods from applications/proto.py converted to the fixtures.
sysctl check moved to the specific file where it is using.
Some options moved to the constructor to have early access.
Diffstat (limited to 'test/unit/option.py')
-rw-r--r-- | test/unit/option.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/option.py b/test/unit/option.py index cb3803dc..e00a043a 100644 --- a/test/unit/option.py +++ b/test/unit/option.py @@ -1,7 +1,13 @@ +import os +import platform + class Options: _options = { + 'architecture': platform.architecture()[0], + 'is_privileged': os.geteuid() == 0, 'skip_alerts': [], 'skip_sanitizer': False, + 'system': platform.system() } def __setattr__(self, name, value): |