aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/qpixmapcache_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/qpixmapcache_test.py')
-rw-r--r--tests/QtGui/qpixmapcache_test.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/QtGui/qpixmapcache_test.py b/tests/QtGui/qpixmapcache_test.py
new file mode 100644
index 000000000..33d631b92
--- /dev/null
+++ b/tests/QtGui/qpixmapcache_test.py
@@ -0,0 +1,36 @@
+import unittest
+from helper import UsesQApplication
+from PySide.QtGui import QPixmapCache, QPixmap
+
+
+class QPixmapCacheTest(UsesQApplication):
+
+ def testWithString(self):
+ pm1 = QPixmap()
+ ok = QPixmapCache.find('img', pm1)
+ self.assertFalse(ok)
+
+ pm2 = QPixmap()
+ ok = QPixmapCache.insert('img', pm2)
+ self.assertTrue(ok)
+
+ pm3 = QPixmap()
+ ok = QPixmapCache.find('img', pm3)
+ self.assertTrue(ok)
+
+ def testWithKey(self):
+ pm1 = QPixmap()
+ ok = QPixmapCache.find(QPixmapCache.Key(), pm1)
+ self.assertFalse(ok)
+
+ pm2 = QPixmap()
+ key = QPixmapCache.insert(pm2)
+
+ pm3 = QPixmap()
+ ok = QPixmapCache.find(key, pm3)
+ self.assertTrue(ok)
+
+
+if __name__ == '__main__':
+ unittest.main()
+