fdfb9edfb0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
543 B
Python
27 lines
543 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def sample_container():
|
|
return {
|
|
"id": "abc123",
|
|
"name": "test-container",
|
|
"status": "running",
|
|
"image": "nginx:latest",
|
|
"created": "2026-03-05T00:00:00Z",
|
|
"uptime": "2 hours",
|
|
"is_swarm": False,
|
|
"swarm_service": None,
|
|
}
|
|
|
|
|
|
@pytest.fixture
|
|
def sample_group():
|
|
return {
|
|
"id": "test-group",
|
|
"name": "Test Group",
|
|
"services": [
|
|
{"node": "hf-pdocker-01", "container": "test-container"},
|
|
],
|
|
}
|