mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-01 21:33:02 +02:00
Add minor changes in all testscripts, to add name and description Add generated test specification Add generated topology image
21 lines
433 B
Python
Executable File
21 lines
433 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Test that it is possible to get all operational data
|
|
"""
|
|
Get all operational
|
|
|
|
Basic test just to get all operational.
|
|
"""
|
|
import infamy
|
|
import infamy.iface as iface
|
|
|
|
with infamy.Test() as test:
|
|
with test.step("Initialize"):
|
|
env = infamy.Env()
|
|
target = env.attach("target", "mgmt")
|
|
|
|
with test.step("Get all Operational data"):
|
|
target.get_data(parse=False)
|
|
|
|
test.succeed()
|