blob: 9f5172f792004d82cc6aab42f71313c2ad44eb7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import unittest
import hashlib
try:
import sip
sip.setapi('QVariant', 2)
except ValueError:
pass
from leap.gui import mainwindow_rc
# I have to admit that there's something
# perverse in testing this.
# Even though, I still think that it _is_ a good idea
# to put a check to avoid non-updated resources files.
# so, if you came here because an updated resource
# did break a test, what you have to do is getting
# the md5 hash of your qt_resource_data and change it here.
# annoying? yep. try making a script for that :P
class MainWindowResourcesTest(unittest.TestCase):
def test_mainwindow_resources_hash(self):
self.assertEqual(
hashlib.md5(mainwindow_rc.qt_resource_data).hexdigest(),
'e04cb467985ba38b9eb91e7689f9458f')
if __name__ == "__main__":
unittest.main()
|