Remove files that should be ignored based on .gitignore

This commit is contained in:
Storm Dragon
2024-10-17 16:28:08 -04:00
parent 3278dd8a6c
commit 9569c50a0b
1448 changed files with 0 additions and 1537952 deletions

View File

@ -1,38 +0,0 @@
#!/usr/bin/python
"""Test of dialog presentation."""
from macaroon.playback import *
import utils
sequence = MacroSequence()
sequence.append(KeyComboAction("<Control>f"))
sequence.append(TypeAction("Expander"))
sequence.append(PauseAction(3000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Return"))
sequence.append(utils.AssertPresentationAction(
"1. Dialog automatic reading",
["BRAILLE LINE: 'gtk-demo application window Expander $l'",
" VISIBLE: 'Expander $l', cursor=1",
"BRAILLE LINE: 'gtk-demo application GtkExpander dialog'",
" VISIBLE: 'GtkExpander dialog', cursor=1",
"BRAILLE LINE: 'gtk-demo application GtkExpander dialog & y Details collapsed toggle button'",
" VISIBLE: '& y Details collapsed toggle but', cursor=1",
"SPEECH OUTPUT: 'GtkExpander Expander demo. Click on the triangle for details.'",
"SPEECH OUTPUT: 'Details toggle button collapsed'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_Enter"))
sequence.append(utils.AssertPresentationAction(
"2. Dialog Where Am I",
["BRAILLE LINE: 'gtk-demo application GtkExpander dialog & y Details collapsed toggle button'",
" VISIBLE: '& y Details collapsed toggle but', cursor=1",
"SPEECH OUTPUT: 'Details toggle button collapsed'"]))
sequence.append(KeyComboAction("<Alt>F4"))
sequence.append(utils.AssertionSummaryAction())
sequence.start()