bouquin/tests/test_key_prompt.py
2025-11-08 17:29:36 +11:00

9 lines
208 B
Python

from bouquin.key_prompt import KeyPrompt
def test_key_prompt_roundtrip(qtbot):
kp = KeyPrompt()
qtbot.addWidget(kp)
kp.show()
kp.edit.setText("swordfish")
assert kp.key() == "swordfish"