Update of /cvsroot/webware/Webware/MiddleKit/Tests/MKBasic.mkmodel
In directory usw-pr-cvs1:/tmp/cvs-serv11738/Tests/MKBasic.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/MKBasic.mkmodel/TestEmpty.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestEmpty.py 22 Jun 2001 01:00:35 -0000 1.4
--- TestEmpty.py 3 May 2002 14:26:29 -0000 1.5
***************
*** 1,6 ****
! def test():
from Thing import Thing
from Person import Person
- from MiddleKit.Run.ObjectStore import Store as store
from MiscUtils.DataTable import DataTable
--- 1,5 ----
! def test(store):
from Thing import Thing
from Person import Person
from MiscUtils.DataTable import DataTable
|