|
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 |
"""Test the shelve Storage Manager for dejavu. |
|---|
| 2 |
|
|---|
| 3 |
Notice that, since StorageManagerShelve doesn't decompile any Expressions, |
|---|
| 4 |
this will also test all native dejavu logic functions and any other aspects |
|---|
| 5 |
of Expression.evaluate(unit). |
|---|
| 6 |
""" |
|---|
| 7 |
|
|---|
| 8 |
import os |
|---|
| 9 |
|
|---|
| 10 |
opts = {u'Path': os.getcwd()} |
|---|
| 11 |
SM_class = "dejavu.storage.storeshelve.StorageManagerShelve" |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
if __name__ == "__main__": |
|---|
| 15 |
import test |
|---|
| 16 |
test.run_zoo(SM_class, opts) |
|---|