forked from TrueCloudLab/frostfs-testlib
[#3] Move source code of testlib to src directory
Signed-off-by: Vladimir Domnich <v.domnich@yadro.com>
This commit is contained in:
parent
c48f7b7ff2
commit
f5cd6a1954
41 changed files with 230 additions and 207 deletions
14
src/neofs_testlib/cli/neofs_authmate/authmate.py
Normal file
14
src/neofs_testlib/cli/neofs_authmate/authmate.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
from typing import Optional
|
||||
|
||||
from neofs_testlib.cli.neofs_authmate.secret import NeofsAuthmateSecret
|
||||
from neofs_testlib.cli.neofs_authmate.version import NeofsAuthmateVersion
|
||||
from neofs_testlib.shell import Shell
|
||||
|
||||
|
||||
class NeofsAuthmate:
|
||||
secret: Optional[NeofsAuthmateSecret] = None
|
||||
version: Optional[NeofsAuthmateVersion] = None
|
||||
|
||||
def __init__(self, shell: Shell, neofs_authmate_exec_path: str):
|
||||
self.secret = NeofsAuthmateSecret(shell, neofs_authmate_exec_path)
|
||||
self.version = NeofsAuthmateVersion(shell, neofs_authmate_exec_path)
|
Loading…
Add table
Add a link
Reference in a new issue