~madhuvishy/gtg/added-google-tasks

« back to all changes in this revision

Viewing changes to GTG/tests/test_tagstore.py

  • Committer: Luca Invernizzi
  • Date: 2011-05-09 22:42:19 UTC
  • Revision ID: invernizzi.l@gmail.com-20110509224219-l8yuwtphg8tyvynp
removing unused tests from the tagstore

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
"""Tests for the tagstore."""
21
21
 
22
22
import unittest
23
 
import gobject
24
23
 
25
24
from GTG.core.tagstore   import Tag
26
 
from GTG.core.task import Task
27
25
from GTG.core.datastore import DataStore
28
 
from GTG.core           import CoreConfig
29
26
 
30
 
from GTG.tests.signals_testing import SignalCatcher, GobjectSignalsManager
 
27
from GTG.tests.signals_testing import GobjectSignalsManager
31
28
 
32
29
 
33
30
 
36
33
 
37
34
    
38
35
    def setUp(self):
39
 
        ds = DataStore(CoreConfig())
 
36
        ds = DataStore()
40
37
        self.req = ds.get_requester()
41
38
        #initalize gobject signaling system
42
39
        self.gobject_signal_manager = GobjectSignalsManager()