mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-25 10:12:13 +00:00
8 lines
170 B
Python
8 lines
170 B
Python
|
import delegator
|
||
|
|
||
|
|
||
|
def test_fluence_cli_version():
|
||
|
c = delegator.run(f"npx fluence --version", block=True)
|
||
|
print(f"Fluence CLI version: {c.out}")
|
||
|
assert True
|