blob: 56b90df172de9a1f7d3e8994eb5dfc12413051c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python
# This test opens a file with wrong extenstion.
import os
os.environ['LANG']='C'
srcdir = os.environ['srcdir']
from dogtail.procedural import *
run('evince', arguments=' '+srcdir+'/test-mime.bin')
# Close evince
click('File', roleName='menu')
click('Close', roleName='menu item')
|