aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtXml/qxmlsimplereader_test.py
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-06-07 14:43:45 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-06-07 16:57:11 -0300
commitab918abc1e103e0ca86939f7d057e8a44ac8a4ef (patch)
tree53c6f57d089dcf5e145d766b1ceef704714046d8 /tests/QtXml/qxmlsimplereader_test.py
parent471486732b03cbb42b884158604a59d5a18e8a35 (diff)
Created new unittest model.
Separete unittest for module. Only run unittest for compiled modules. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/QtXml/qxmlsimplereader_test.py')
-rw-r--r--tests/QtXml/qxmlsimplereader_test.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/QtXml/qxmlsimplereader_test.py b/tests/QtXml/qxmlsimplereader_test.py
new file mode 100644
index 000000000..6c4d3f4ea
--- /dev/null
+++ b/tests/QtXml/qxmlsimplereader_test.py
@@ -0,0 +1,34 @@
+#!/usr/bin/python
+import unittest
+from PySide.QtXml import QXmlSimpleReader
+
+class QXmlSimpleReaderTest(unittest.TestCase):
+
+ def testQXmlSimpleReaderInstatiation(self):
+ '''QXmlSimpleReader must be a concrete class not an abstract one.'''
+ reader = QXmlSimpleReader()
+
+ def testQXmlSimpleReaderFeatures(self):
+ '''Calls the QXmlSimpleReader.features method. The features checked
+ (at least the first two) can be found in the QXmlSimpleReader documentation:
+ http://qt.nokia.com/doc/4.6/qxmlsimplereader.html#setFeature
+ '''
+ reader = QXmlSimpleReader()
+ hasFeature, ok = reader.feature('http://xml.org/sax/features/namespaces')
+ self.assertEqual((hasFeature, ok), (True, True))
+
+ hasFeature, ok = reader.feature('http://xml.org/sax/features/namespace-prefixes')
+ self.assertEqual((hasFeature, ok), (False, True))
+
+ hasFeature, ok = reader.feature('foobar')
+ self.assertEqual((hasFeature, ok), (False, False))
+
+ def testQXmlSimpleReaderProperty(self):
+ '''Tries to get a non existent property.'''
+ reader = QXmlSimpleReader()
+ prop, ok = reader.property('foo')
+ self.assertEqual((prop, ok), (None, False))
+
+if __name__ == '__main__':
+ unittest.main()
+