cbd0adca91
Stateful FastAPI lab with contract packs, Compose/Helm, Docker Hub release targets, and Pulumi coverage across all Engine series (GET/POST/PUT/DELETE/HEAD).
8 lines
276 B
Python
8 lines
276 B
Python
from app.ovirt.versioning import strip_api_prefix
|
|
|
|
|
|
def test_strip_prefix():
|
|
assert strip_api_prefix("/ovirt-engine/api/vms") == "/vms"
|
|
assert strip_api_prefix("/ovirt-engine/api/v4/vms") == "/vms"
|
|
assert strip_api_prefix("/ovirt-engine/api/v3/hosts") == "/hosts"
|