(temp_marimo_file: str)
| 1432 | class TestExportSession: |
| 1433 | @staticmethod |
| 1434 | def test_export_session(temp_marimo_file: str) -> None: |
| 1435 | p = _run_export("session", temp_marimo_file) |
| 1436 | _assert_success(p) |
| 1437 | |
| 1438 | session_file = get_session_cache_file(Path(temp_marimo_file)) |
| 1439 | assert session_file.exists() |
| 1440 | data = json.loads(session_file.read_text(encoding="utf-8")) |
| 1441 | assert data["version"] == "1" |
| 1442 | assert len(data["cells"]) > 0 |
| 1443 | |
| 1444 | @staticmethod |
| 1445 | def test_export_session_with_args(temp_marimo_file: str) -> None: |
nothing calls this directly
no test coverage detected