|
Revision 95
(checked in by fumanchu, 8 years ago)
|
Reorganization to prepare for new test runner.
|
- 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 |
import zoo_fixture |
|---|
| 5 |
|
|---|
| 6 |
def run_tests(): |
|---|
| 7 |
|
|---|
| 8 |
opts = {u'Connect': "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=zoo.mdb;", |
|---|
| 9 |
u'Expanded Columns': "Animal.PreviousZoos:int", |
|---|
| 10 |
} |
|---|
| 11 |
zoo_fixture.run_tests("dejavu.storage.storeado.StorageManagerADO_MSAccess", opts) |
|---|
| 12 |
|
|---|
| 13 |
if __name__ == "__main__": |
|---|
| 14 |
run_tests() |
|---|
| 15 |
|
|---|