mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
add test for creating query object and setting search_for
related to Bug 796137 and fix in commit 1a7c5b9a32
24 lines
566 B
Python
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()
|