|
Revision 96
(checked in by fumanchu, 8 years ago)
|
Lots of changes to the test suite. Partially fixes #23.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
"""This works...most of the time. Sometimes during the Multithreading, |
|---|
| 2 |
the Access SM will crash python.""" |
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
SM_class = "dejavu.storage.storeado.StorageManagerADO_MSAccess" |
|---|
| 6 |
opts = {u'Connect': "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=zoo.mdb;", |
|---|
| 7 |
u'Expanded Columns': "Animal.PreviousZoos:int", |
|---|
| 8 |
} |
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
if __name__ == "__main__": |
|---|
| 12 |
import test |
|---|
| 13 |
test.run_zoo(SM_class, opts) |
|---|
| 14 |
|
|---|