blob: 17dcc0edba67ca6284618f96ce8c0baa5259365a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/python3
# Test opening a file with wrong extenstion.
from testCommon import run_app, bail
from dogtail.procedural import *
try:
run_app(file='test-mime.bin')
# Close Atril
click('File', roleName='menu')
click('Close', roleName='menu item')
except:
bail()
|