Ver código fonte

Fix travis test

pull/378/head
Guillaume Vincent 5 anos atrás
pai
commit
1844578b71
1 arquivos alterados com 3 adições e 6 exclusões
  1. +3
    -6
      cli/tests/test_interaction.py

+ 3
- 6
cli/tests/test_interaction.py Ver arquivo

@@ -5,11 +5,8 @@ import time

class TestInteraction(unittest.TestCase):
def test_keyboard_interrupt(self):

p = pexpect.spawn('/bin/bash -c "python lesspass/core.py --prompt"')
time.sleep(1)

p = pexpect.spawn('/bin/bash -c "python3 lesspass/core.py --prompt"')
p.expect("Site: ")
p.kill(signal.SIGINT)
p.expect(pexpect.EOF)

self.assertEqual(p.before, b'Site: ')
self.assertEqual(p.before, b"")

Carregando…
Cancelar
Salvar