Skip to content

Commit

Permalink
adopt test cases for new test environment
Browse files Browse the repository at this point in the history
  • Loading branch information
ownport committed Oct 29, 2012
1 parent 2b5fbdc commit f915f09
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_collection_manager.py
@@ -1,3 +1,7 @@
import sys
if '' not in sys.path:
sys.path.append('')

import unittest

from kvlite import CollectionManager
Expand Down
4 changes: 4 additions & 0 deletions tests/test_mysql_collection.py
@@ -1,3 +1,7 @@
import sys
if '' not in sys.path:
sys.path.append('')

import kvlite
import unittest

Expand Down
4 changes: 4 additions & 0 deletions tests/test_mysql_collection_manager.py
@@ -1,3 +1,7 @@
import sys
if '' not in sys.path:
sys.path.append('')

import unittest

from kvlite import MysqlCollectionManager
Expand Down
4 changes: 4 additions & 0 deletions tests/test_serializers.py
@@ -1,3 +1,7 @@
import sys
if '' not in sys.path:
sys.path.append('')

import unittest

from kvlite import cPickleSerializer as cps
Expand Down
5 changes: 5 additions & 0 deletions tests/test_sqlite_collection.py
@@ -1,3 +1,8 @@
import sys
if '' not in sys.path:
sys.path.append('')


import unittest

import kvlite
Expand Down
5 changes: 5 additions & 0 deletions tests/test_sqlite_collection_manager.py
@@ -1,3 +1,8 @@
import sys
if '' not in sys.path:
sys.path.append('')


import unittest

from kvlite import SqliteCollectionManager
Expand Down
4 changes: 4 additions & 0 deletions tests/test_utils.py
@@ -1,3 +1,7 @@
import sys
if '' not in sys.path:
sys.path.append('')

import kvlite
import unittest

Expand Down

0 comments on commit f915f09

Please sign in to comment.