bouquin/tests/test_key_prompt.py
2025-11-08 00:30:46 -06: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"