diff options
author | kali <kali@leap.se> | 2012-11-30 04:46:55 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-12-12 04:27:50 +0900 |
commit | ff6d4b8633edc763f22489030766a6c7a9377693 (patch) | |
tree | 6f35a3d1114874abc331a79c73bc927097d30156 /src/leap/gui/test_mainwindow_rc.py | |
parent | b262ac8bae66c391aa249e93268db9935f1c475f (diff) |
progress initial tests
Diffstat (limited to 'src/leap/gui/test_mainwindow_rc.py')
-rw-r--r-- | src/leap/gui/test_mainwindow_rc.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/leap/gui/test_mainwindow_rc.py b/src/leap/gui/test_mainwindow_rc.py deleted file mode 100644 index c5abb4aa..00000000 --- a/src/leap/gui/test_mainwindow_rc.py +++ /dev/null @@ -1,29 +0,0 @@ -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(), - '53e196f29061d8f08f112e5a2e64eb53') |