(text: str, expected: bool)
| 903 | ], |
| 904 | ) |
| 905 | def test_is_sandbox_allowed(text: str, expected: bool) -> None: |
| 906 | from mycli.packages.sql_utils import is_sandbox_allowed |
| 907 | |
| 908 | assert is_sandbox_allowed(text) is expected |
| 909 | |
| 910 | |
| 911 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected