Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webapp/webapp/features/terrain.py
diff options
context:
space:
mode:
authorCode Raguet <ignacio.code@gmail.com>2013-09-30 21:42:07 (GMT)
committer Code Raguet <ignacio.code@gmail.com>2013-09-30 21:42:07 (GMT)
commitdb74c4dceeb0e0236088a59d151c44cccac5f9c7 (patch)
treee2f936eb2b21436742c319ff1052094e9ffe31e4 /webapp/webapp/features/terrain.py
parent8fc7aa4355f6e0858c4de6c44ea692abc0213188 (diff)
add fixtures_path to lettuce world
Diffstat (limited to 'webapp/webapp/features/terrain.py')
-rw-r--r--webapp/webapp/features/terrain.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/webapp/features/terrain.py b/webapp/webapp/features/terrain.py
index ed52bf6..3f8c8a5 100644
--- a/webapp/webapp/features/terrain.py
+++ b/webapp/webapp/features/terrain.py
@@ -1,3 +1,5 @@
+import os
+
from lettuce import world, before, after
from splinter import Browser
from fabric.api import local
@@ -11,6 +13,8 @@ from utils.test import remove_option_images_dir
@before.all
def set_browser():
world.browser = Browser('phantomjs')
+ world.fixtures_path = os.path.join(settings.PROJECT_ROOT,
+ 'features/fixtures')
@after.all