(text: str, expected: bool)
| 918 | ], |
| 919 | ) |
| 920 | def test_is_password_change(text: str, expected: bool) -> None: |
| 921 | from mycli.packages.sql_utils import is_password_change |
| 922 | |
| 923 | assert is_password_change(text) is expected |
| 924 | |
| 925 | |
| 926 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected