Add mongo contentstore to acceptance.py for lettuce tests for lms

This commit is contained in:
Jay Zoldak
2013-03-19 15:44:01 -04:00
parent 74653ff8ad
commit daadaffb61

View File

@@ -29,6 +29,14 @@ MODULESTORE = {
}
}
CONTENTSTORE = {
'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
'OPTIONS': {
'host': 'localhost',
'db': 'test_xcontent',
}
}
# Set this up so that rake lms[acceptance] and running the
# harvest command both use the same (test) database
# which they can flush without messing up your dev db