(user_input: str, env_names: tuple[str], is_all: bool, is_default: bool)
| 43 | ], |
| 44 | ) |
| 45 | def test_clienv(user_input: str, env_names: tuple[str], is_all: bool, is_default: bool) -> None: |
| 46 | ce = CliEnv(user_input) |
| 47 | assert (ce.is_all, ce.is_default_list, tuple(ce)) == (is_all, is_default, tuple(env_names)) |
| 48 | assert CliEnv(user_input) == ce |
| 49 | |
| 50 | |
| 51 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…