Update of /cvsroot/webware/Webware/MiddleKit/Tests/MKNone.mkmodel
In directory usw-pr-cvs1:/tmp/cvs-serv11738/Tests/MKNone.mkmodel
Modified Files:
TestEmpty.py
Log Message:
- Remove ObjectStore.Store var which referred to the first store that happened to be created.
- Remove the store arg to MiddleObject.__init__(store) which was little used and confusing.
- Test suite clean ups.
- Make MKMultipleStores test having 2 different stores. This works now.
- Can now have two WebKit contexts that use MiddleKit without problems.
- Add MKMultipleStores to default set of test suites.
Index: TestEmpty.py
===================================================================
RCS file: /cvsroot/webware/Webware/MiddleKit/Tests/MKNone.mkmodel/TestEmpty.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestEmpty.py 13 Feb 2001 04:51:58 -0000 1.1
--- TestEmpty.py 3 May 2002 14:26:30 -0000 1.2
***************
*** 1,5 ****
! def test():
from Foo import Foo
- from MiddleKit.Run.ObjectStore import Store as store
f = Foo()
--- 1,4 ----
! def test(store):
from Foo import Foo
f = Foo()
|