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

Change of name.

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

Legend:

Unmodified
Added
Removed
  • 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.