您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

test_interaction.py 330 B

12345678910111213
  1. import unittest
  2. import pexpect
  3. import signal
  4. import time
  5. class TestInteraction(unittest.TestCase):
  6. def test_keyboard_interrupt(self):
  7. p = pexpect.spawn("python3 lesspass/core.py --prompt")
  8. p.expect("Site: ")
  9. p.kill(signal.SIGINT)
  10. p.expect(pexpect.EOF)
  11. self.assertEqual(p.before, b"")