Files
infix/test/infamy/__init__.py
Joachim Wiberg ec4c1b1d70 test/case: new test, basic container test
- New helper class for container testing
 - New helper class to urllib, Furl

Due to extremely weak Python-fu in the undersigned, this patch changes
the __init__.py file to add new helper classes for container tests.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2024-02-25 19:49:27 +01:00

19 lines
381 B
Python

import os
from .container import Container
from .env import Env
from .furl import Furl
from .netns import IsolatedMacVlan
from .sniffer import Sniffer
from .tap import Test
from .util import until
def std_topology(name):
return os.path.realpath(
os.path.join(
os.path.dirname(__file__),
"topologies",
name + ".dot"
)
)