Commit 11c94d96 authored by Romain Courteaud's avatar Romain Courteaud

slapos_crm: test slapos_crm_invalidate_suspended_regularisation_request is ok

parent af07b492
......@@ -161,7 +161,6 @@ class TestSlapOSCRMCreateRegularisationRequestAlarm(SlapOSTestCaseMixin):
'Person_checkToCreateRegularisationRequest'
)
# XXX couscous
class TestSlapOSCrmInvalidateSuspendedRegularisationRequest(SlapOSTestCaseMixinWithAbort):
......@@ -173,7 +172,10 @@ class TestSlapOSCrmInvalidateSuspendedRegularisationRequest(SlapOSTestCaseMixinW
reference="TESTREGREQ-%s" % new_id,
)
def test_invalidateSuspendedRegularisationRequest_validated_regularisation_request(self):
#################################################################
# slapos_crm_invalidate_suspended_regularisation_request
#################################################################
def test_RegularisationRequest_invalidateIfPersonBalanceIsOk_alarm_validatedRegularisationRequest(self):
ticket = self.createRegularisationRequest()
ticket.validate()
self.tic()
......@@ -181,7 +183,7 @@ class TestSlapOSCrmInvalidateSuspendedRegularisationRequest(SlapOSTestCaseMixinW
slapos_crm_invalidate_suspended_regularisation_request
self._test_alarm(alarm, ticket, "RegularisationRequest_invalidateIfPersonBalanceIsOk")
def test_invalidateSuspendedRegularisationRequest_suspended_regularisation_request(self):
def test_RegularisationRequest_invalidateIfPersonBalanceIsOk_alarm_suspendedRegularisationRequest(self):
ticket = self.createRegularisationRequest()
ticket.validate()
ticket.suspend()
......@@ -190,7 +192,7 @@ class TestSlapOSCrmInvalidateSuspendedRegularisationRequest(SlapOSTestCaseMixinW
slapos_crm_invalidate_suspended_regularisation_request
self._test_alarm(alarm, ticket, "RegularisationRequest_invalidateIfPersonBalanceIsOk")
def test_invalidateSuspendedRegularisationRequest_invalidated_regularisation_request(self):
def test_RegularisationRequest_invalidateIfPersonBalanceIsOk_alarm_invalidatedRegularisationRequest(self):
ticket = self.createRegularisationRequest()
ticket.validate()
ticket.invalidate()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment