Esempio n. 1
0
 def setUp(self):
     from zope.schema.vocabulary import _clear
     from zope.schema.vocabulary import getVocabularyRegistry
     from zope.schema.tests.states import StateVocabulary
     _clear()
     vr = getVocabularyRegistry()
     vr.register("states", StateVocabulary)
Esempio n. 2
0
def _clear():
    """Re-initialize the vocabulary registry."""
    # This should normally only be needed by the testing framework,
    # but is also used for module initialization.
    global vocabularyRegistry
    vocabulary._clear()
    vocabularyRegistry = vocabulary.getVocabularyRegistry()
    vocabulary._clear()
    vocabulary.setVocabularyRegistry(ZopeVocabularyRegistry())
def _clear():
    """Re-initialize the vocabulary registry."""
    # This should normally only be needed by the testing framework,
    # but is also used for module initialization.
    global vocabularyRegistry
    # The net effect of these two lines is to have this modules
    # vocabularyRegistry set to zope.schema.vocabulary.VocabularyRegistry()
    vocabulary._clear()
    vocabularyRegistry = vocabulary.getVocabularyRegistry()
    vocabulary._clear()
    # Which we immediately replace
    vocabulary.setVocabularyRegistry(ZopeVocabularyRegistry())
Esempio n. 4
0
def doctestSetUp(test):
    site = setup.placefulSetUp(site=True)
    test.globs['rootFolder'] = site

    # session setup
    zope.component.provideAdapter(TestClientId, (IRequest,), IClientId)
    zope.component.provideAdapter(LanguageSession, (IRequest,), 
        ILanguageSession)
    zope.component.provideUtility(CookieClientIdManager(), IClientIdManager)
    rsdc = session.RAMSessionDataContainer()
    zope.component.provideUtility(rsdc, ISessionDataContainer, '')

    # register vocabularies
    vocabulary.setVocabularyRegistry(None)
    vocabulary._clear()
    vr = vocabulary.getVocabularyRegistry()
    
    vr.register('Offered Languages', OfferedLanguagesVocabulary)
Esempio n. 5
0
 def setUp(self):
     vocabulary._clear()
     vr = vocabulary.getVocabularyRegistry()
     vr.register("states", states.StateVocabulary)
Esempio n. 6
0
def clearVocabulary(testcase):
    from zope.schema.vocabulary import _clear
    _clear()
Esempio n. 7
0
 def setUp(self):
     vocabulary._clear()
     vr = vocabulary.getVocabularyRegistry()
     vr.register("states", states.StateVocabulary)
Esempio n. 8
0
def tearDownCategorySet(test):
    placefulTearDown()
    tearDown(test)
    from zope.schema.vocabulary import _clear
    _clear()
Esempio n. 9
0
 def tearDown(self):
     vocabulary._clear()
Esempio n. 10
0
 def tearDown(self):
     from zope.schema.vocabulary import _clear
     _clear()
Esempio n. 11
0
def tearDownPlaces(test):
    placefulTearDown()
    from zope.schema.vocabulary import _clear
    _clear()
Esempio n. 12
0
 def setUp(self):
     vocabulary._clear()
Esempio n. 13
0
def _clearVocabulary(ztc):
    from zope.schema.vocabulary import _clear
    _clear()
Esempio n. 14
0
def doctestTearDown(test):
    setup.placefulTearDown()
    vocabulary._clear()
Esempio n. 15
0
 def tearDown(self):
     vocabulary._clear()
Esempio n. 16
0
 def setUp(self):
     from zope.schema.vocabulary import _clear
     _clear()
Esempio n. 17
0
 def setUp(self):
     from zope.schema.vocabulary import _clear
     _clear()
Esempio n. 18
0
 def setUp(self):
     vocabulary._clear()
Esempio n. 19
0
 def tearDown(self):
     from zope.schema.vocabulary import _clear
     _clear()
Esempio n. 20
0
def _clearVocabulary(ztc):
    from zope.schema.vocabulary import _clear
    _clear()
Esempio n. 21
0
def tearDownFieldConfig(test):
    placefulTearDown()
    tearDown(test)
    from zope.schema.vocabulary import _clear
    _clear()