Revision: 73
Author: smiddlek
Date: Tue May 1 14:27:35 2012
Log: Patch for Issue 42 (Allow MoxMetaTestBase to be used with other
metaclasses).
Thanks
dbro...@google.com
http://code.google.com/p/pymox/source/detail?r=73
Modified:
/trunk/mox.py
=======================================
--- /trunk/mox.py Tue May 1 13:43:51 2012
+++ /trunk/mox.py Tue May 1 14:27:35 2012
@@ -2054,6 +2054,7 @@
"""
def __init__(cls, name, bases, d):
+ super(MoxMetaTestBase, cls).__init__(name, bases, d)
type.__init__(cls, name, bases, d)
# also get all the attributes from the base classes to account