gnucash/bindings/python/tests/test_query.py
Christoph Holtermann 54cb3358ce add basic test for python query
add test for creating query object and setting search_for
related to Bug 796137 and fix in commit 1a7c5b9a32
2018-09-20 18:54:49 +02:00

24 lines
566 B
Python

from unittest import TestCase, main
from gnucash import Query
from gnucash.gnucash_core_c import GNC_ID_INVOICE
class TestQuery(TestCase):
def test_create(self):
query = Query()
self.assertIsInstance(query, Query)
def test_search_for(self):
query = Query()
query.search_for(GNC_ID_INVOICE)
self.assertEqual(query.get_search_for(), GNC_ID_INVOICE)
obj_type = 'gncInvoice'
query.search_for(obj_type)
self.assertEqual(query.get_search_for(), obj_type)
if __name__ == '__main__':
main()