You can not select more than 25 topics
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
- import time
-
-
- 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"")
|