Ignore:
Timestamp:
10 Dec 2011, 06:15:17 (13 years ago)
Author:
Henrik Bettermann
Message:

Replace the term 'WAeUP' by SIRP which is a WAeUP product.

Location:
main/waeup.sirp/trunk/src/waeup/sirp/tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/tests/test_interfaces.py

    r7193 r7321  
    4848        # Register a role not visible to waeup portal as its name does
    4949        # not start with 'waeup.'
    50         class NonWAeUPRole(grok.Role):
     50        class NonSIRPRole(grok.Role):
    5151            grok.name('nonwaeup.testrole')
    5252            grok.title('Role not suitable for waeup')
    5353            grok.permissions('waeup.Public')
    5454        grok.testing.grok_component('SomeRole', SomeRole)
    55         grok.testing.grok_component('NonWAeUPRole', NonWAeUPRole)
     55        grok.testing.grok_component('NonSIRPRole', NonSIRPRole)
    5656        return
    5757
  • main/waeup.sirp/trunk/src/waeup/sirp/tests/test_objecthistory.py

    r7193 r7321  
    2626from zope.security.testing import Principal, Participation
    2727from waeup.sirp.app import University
    28 from waeup.sirp.interfaces import IObjectHistory, IWAeUPObject
     28from waeup.sirp.interfaces import IObjectHistory, ISIRPObject
    2929from waeup.sirp.testing import FunctionalTestCase, FunctionalLayer
    3030from waeup.sirp.objecthistory import ObjectHistory
    3131
    3232class SampleObject(grok.Model):
    33     grok.implements(IWAeUPObject)
     33    grok.implements(ISIRPObject)
    3434    pass
    3535
Note: See TracChangeset for help on using the changeset viewer.