19 lines
338 B
Python
19 lines
338 B
Python
import pytest
|
|
from fixtures_flakes import FlakeForTest
|
|
from helpers import cli
|
|
|
|
|
|
@pytest.mark.impure
|
|
def test_backups(
|
|
test_flake_with_core: FlakeForTest,
|
|
) -> None:
|
|
cli.run(
|
|
[
|
|
"backups",
|
|
"list",
|
|
"--flake",
|
|
str(test_flake_with_core.path),
|
|
"vm1",
|
|
]
|
|
)
|