25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import unittest
- import pexpect
- import signal
-
-
- class TestInteraction(unittest.TestCase):
- def test_keyboard_interrupt(self):
- p = pexpect.spawn("python3 lesspass/core.py --prompt")
- p.expect("Site: ")
- p.kill(signal.SIGINT)
- p.expect(pexpect.EOF)
- self.assertEqual(p.before, b"")
|