--- a/server/session.py Tue Mar 09 10:59:44 2010 +0100
+++ b/server/session.py Tue Mar 09 10:59:50 2010 +0100
@@ -233,9 +233,15 @@
self.set_language(value)
def deleted_in_transaction(self, eid):
+ """return True if the entity of the given eid is being deleted in the
+ current transaction
+ """
return eid in self.transaction_data.get('pendingeids', ())
def added_in_transaction(self, eid):
+ """return True if the entity of the given eid is being created in the
+ current transaction
+ """
return eid in self.transaction_data.get('neweids', ())
def schema_rproperty(self, rtype, eidfrom, eidto, rprop):
--- a/sobjects/test/unittest_supervising.py Tue Mar 09 10:59:44 2010 +0100
+++ b/sobjects/test/unittest_supervising.py Tue Mar 09 10:59:50 2010 +0100
@@ -27,7 +27,6 @@
def test_supervision(self):
- session = self.session
# do some modification
user = self.execute('INSERT CWUser X: X login "toto", X upassword "sosafe", X in_group G '
'WHERE G name "users"').get_entity(0, 0)
@@ -37,6 +36,7 @@
self.execute('SET X content "duh?" WHERE X is Comment')
self.execute('DELETE X comments Y WHERE Y is Card, Y title "une autre news !"')
# check only one supervision email operation
+ session = self.session
sentops = [op for op in session.pending_operations
if isinstance(op, SupervisionMailOp)]
self.assertEquals(len(sentops), 1)