from __future__ import annotations

import subprocess
import sys
from pathlib import Path
from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from tox.pytest import ToxProject


def test_call_as_module(empty_project: ToxProject) -> None:  # noqa: ARG001
    subprocess.check_output([sys.executable, "-m", "tox", "-h"])


def test_call_as_exe(empty_project: ToxProject) -> None:  # noqa: ARG001
    subprocess.check_output(["tox", "-h"])
