first step towards dropping sys.path dance

This commit is contained in:
niphlod
2016-08-29 23:01:22 +02:00
parent 326335c3cd
commit 1bf499e3be
28 changed files with 22 additions and 194 deletions
-9
View File
@@ -6,10 +6,6 @@
"""
import os
import unittest
from .fix_path import fix_sys_path
fix_sys_path(__file__)
from gluon.storage import Storage
from gluon.cache import CacheInRam, CacheOnDisk, Cache
@@ -147,8 +143,3 @@ class TestCache(unittest.TestCase):
db.t_a.drop()
db.close()
if __name__ == '__main__':
setUpModule() # pre-python-2.7
unittest.main()
tearDownModule()