~saurabhanandiit/gtg/exportFixed

« back to all changes in this revision

Viewing changes to GTG/tests/test_tagstore.py

Merge of my work on liblarch newbase and all the backends ported to liblarch
(which mainly means porting the datastore).
One failing test, will check it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
from GTG.core.tagstore   import Tag
25
25
from GTG.core.datastore import DataStore
26
 
from GTG.core import CoreConfig
27
26
 
28
27
 
29
28
 
118
117
        self.assertEqual(0, len(save_calls))
119
118
 
120
119
def test_suite():
121
 
    CoreConfig().set_data_dir("./test_data")
122
 
    CoreConfig().set_conf_dir("./test_data")
123
120
    return unittest.TestLoader().loadTestsFromTestCase(TestTag)