|
Revision 88
(checked in by fumanchu, 8 years ago)
|
Set eol-style:native on all .py files.
|
- 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 |
from dejavu.storage import zoo_fixture |
|---|
| 10 |
|
|---|
| 11 |
def run_tests(): |
|---|
| 12 |
opts = {u'Path': os.getcwd()} |
|---|
| 13 |
|
|---|
| 14 |
zoo_fixture.run_tests("dejavu.storage.storeshelve.StorageManagerShelve", opts) |
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
if __name__ == "__main__": |
|---|
| 19 |
run_tests() |
|---|
| 20 |
|
|---|