Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/testing/testxmlhttp.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/testxmlhttp.py')
-rw-r--r--testing/testxmlhttp.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/testing/testxmlhttp.py b/testing/testxmlhttp.py
index 3408f23..1819341 100644
--- a/testing/testxmlhttp.py
+++ b/testing/testxmlhttp.py
@@ -23,6 +23,8 @@ from exe.engine.package import Package
from exe.webui.webserver import WebServer
from exe.webui.packageredirectpage import PackageRedirectPage
from exe.application import Application
+from exe.engine.path import Path
+
class FakeClient(object):
"""Pretends to be a webnow client object"""
@@ -44,10 +46,10 @@ class TestOutline(unittest.TestCase):
class MyConfig:
def __init__(self):
self.port = 8081
- self.dataDir = "."
- self.webDir = "."
- self.exeDir = "."
- self.appDataDir = "."
+ self.dataDir = Path(".")
+ self.webDir = Path(".")
+ self.exeDir = Path(".")
+ self.configDir = Path(".")
self.styles = ["default"]
app = Application()
app.config = MyConfig()