Ignore:
Timestamp:
13 Nov 2014, 14:40:27 (11 years ago)
Author:
Henrik Bettermann
Message:

Change of name.

Location:
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba
Files:
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/utils/tests/test_batching.py

    r11737 r11949  
    3030from zope.component.interfaces import IFactory
    3131from zope.interface import Interface, implements, verify
    32 from waeup.kofa.app import University
    33 from waeup.kofa.interfaces import (
     32from waeup.ikoba.app import University
     33from waeup.ikoba.interfaces import (
    3434    ICSVExporter, IBatchProcessor, IExportJobContainer, IJobManager,
    3535    IExportJob, IExportContainerFinder)
    36 from waeup.kofa.testing import (
     36from waeup.ikoba.testing import (
    3737    FunctionalLayer, FunctionalTestCase, FakeJob, FakeJobManager)
    38 from waeup.kofa.utils.batching import (
     38from waeup.ikoba.utils.batching import (
    3939    ExporterBase, BatchProcessor, export_job, AsyncExportJob,
    4040    ExportJobContainer, VirtualExportJobContainer, ExportContainerFinder)
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/utils/tests/test_converters.py

    r11947 r11949  
    3232    Interface, implements, invariant, Invalid, implementedBy, verify)
    3333
    34 from waeup.kofa.app import University
    35 from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase
    36 from waeup.kofa.interfaces import (
    37     SimpleKofaVocabulary, SubjectSource, GradeSource, IFieldConverter,
     34from waeup.ikoba.app import University
     35from waeup.ikoba.testing import FunctionalLayer, FunctionalTestCase
     36from waeup.ikoba.interfaces import (
     37    SimpleIkobaVocabulary, SubjectSource, GradeSource, IFieldConverter,
    3838    DELETION_MARKER, IGNORE_MARKER)
    39 from waeup.kofa.schoolgrades import ResultEntryField
    40 from waeup.kofa.utils.converters import (
     39from waeup.ikoba.schoolgrades import ResultEntryField
     40from waeup.ikoba.utils.converters import (
    4141    IObjectConverter, IFieldConverter, DefaultFieldConverter,
    4242    ListFieldConverter, PhoneNumberFieldConverter, ResultEntryConverter,
    4343    DefaultObjectConverter)
    44 from waeup.kofa.utils.helpers import attrs_to_fields
    45 
    46 colors = SimpleKofaVocabulary(
     44from waeup.ikoba.utils.helpers import attrs_to_fields
     45
     46colors = SimpleIkobaVocabulary(
    4747    ('Red', u'red'),
    4848    ('Green', u'green'),
    4949    ('Blue', u'blue'),
    5050    )
    51 car_nums = SimpleKofaVocabulary(
     51car_nums = SimpleIkobaVocabulary(
    5252    ('None', 0),
    5353    ('One', 1),
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/utils/tests/test_doctests.py

    r7811 r11949  
    1818"""Register doctests from utils subpackage.
    1919"""
    20 from waeup.kofa.testing import get_doctest_suite
     20from waeup.ikoba.testing import get_doctest_suite
    2121
    2222def test_suite():
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/utils/tests/test_helpers.py

    r11824 r11949  
    3131from zope.security.testing import Principal, Participation
    3232from zope.security.management import newInteraction, endInteraction
    33 from waeup.kofa.utils import helpers
     33from waeup.ikoba.utils import helpers
    3434
    3535class IFakeObject(Interface):
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/utils/tests/test_logger.py

    r9988 r11949  
    1717##
    1818
    19 # Tests for waeup.kofa.utils.logger
     19# Tests for waeup.ikoba.utils.logger
    2020import logging
    2121import os
     
    2525from zope.component.hooks import setSite, clearSite
    2626from zope.interface.verify import verifyClass, verifyObject
    27 from waeup.kofa.app import University
    28 from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase
    29 
    30 from waeup.kofa.utils.logger import (
     27from waeup.ikoba.app import University
     28from waeup.ikoba.testing import FunctionalLayer, FunctionalTestCase
     29
     30from waeup.ikoba.utils.logger import (
    3131    Logger, MAX_BYTES, BACKUP_COUNT, ILoggerCollector, LoggerCollector,
    3232    ILogger)
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/utils/tests/test_utils.py

    r11821 r11949  
    2121import sys
    2222import unittest
    23 from waeup.kofa.interfaces import IKofaUtils
    24 from waeup.kofa.utils.utils import KofaUtils
     23from waeup.ikoba.interfaces import IIkobaUtils
     24from waeup.ikoba.utils.utils import IkobaUtils
    2525from zope.interface import verify
    2626
    2727
    28 class KofaUtilsTestCase(unittest.TestCase):
     28class IkobaUtilsTestCase(unittest.TestCase):
    2929
    3030    def setUp(self):
     
    3636        # Helper: get a `KofUtil` instance with all values of
    3737        # SYSTEM_MAX_LOAD dict set to ``None``
    38         util = KofaUtils()
     38        util = IkobaUtils()
    3939        for key, val in util.SYSTEM_MAX_LOAD.items():
    4040            util.SYSTEM_MAX_LOAD[key] = None
     
    4242
    4343    def test_iface(self):
    44         # KofaUtils fullfill IKofaUtils expectations
    45         utils = KofaUtils()
    46         verify.verifyClass(IKofaUtils, KofaUtils)
    47         verify.verifyObject(IKofaUtils, utils)
     44        # IkobaUtils fullfill IIkobaUtils expectations
     45        utils = IkobaUtils()
     46        verify.verifyClass(IIkobaUtils, IkobaUtils)
     47        verify.verifyObject(IIkobaUtils, utils)
    4848
    4949    def test_expensive_actions_allowed_swap_none(self):
Note: See TracChangeset for help on using the changeset viewer.