Kaynağa Gözat

Fix travis test

pull/378/head
Guillaume Vincent 5 yıl önce
ebeveyn
işleme
1844578b71
1 değiştirilmiş dosya ile 3 ekleme ve 6 silme
  1. +3
    -6
      cli/tests/test_interaction.py

+ 3
- 6
cli/tests/test_interaction.py Dosyayı Görüntüle

@@ -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"")

Yükleniyor…
İptal
Kaydet