shell-cell 1.6.3

Shell-Cell. CLI app to spawn and manage containerized shell environments
1
2
3
4
5
6
7
8
from scell import assert_clean_exit, spawn_scell


def test_scell_basic(spawn_scell) -> None:
    scell = spawn_scell(args=["--version"])
    scell.expect("shell-cell 1.6.2")

    assert_clean_exit(scell)