From e993a00d21ce18a21779512503fc887e1c4676c8 Mon Sep 17 00:00:00 2001 From: Don Mitchell Date: Mon, 23 Sep 2013 14:34:36 -0400 Subject: [PATCH] Test import-export-import assets --- cms/djangoapps/contentstore/tests/test_contentstore.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cms/djangoapps/contentstore/tests/test_contentstore.py b/cms/djangoapps/contentstore/tests/test_contentstore.py index 74c1c3367c..32928bb2fd 100644 --- a/cms/djangoapps/contentstore/tests/test_contentstore.py +++ b/cms/djangoapps/contentstore/tests/test_contentstore.py @@ -907,7 +907,7 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase): draft_store = modulestore('draft') content_store = contentstore() - import_from_xml(module_store, 'common/test/data/', ['toy']) + import_from_xml(module_store, 'common/test/data/', ['toy'], static_content_store=content_store) location = CourseDescriptor.id_to_location('edX/toy/2012_Fall') # get a vertical (and components in it) to copy into an orphan sub dag @@ -986,7 +986,9 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase): delete_course(module_store, content_store, location, commit=True) # reimport - import_from_xml(module_store, root_dir, ['test_export'], draft_store=draft_store) + import_from_xml( + module_store, root_dir, ['test_export'], draft_store=draft_store, static_content_store=content_store + ) items = module_store.get_items(Location(['i4x', 'edX', 'toy', 'vertical', None])) self.assertGreater(len(items), 0)