Merge branch 'release' into 'master' after successful rc/2014-09-17 deploy.

This commit is contained in:
John Eskew
2014-09-18 12:27:32 -04:00
20 changed files with 415 additions and 20 deletions

View File

@@ -644,6 +644,9 @@ def _get_module_info(xblock, rewrite_static_links=True):
course_id=xblock.location.course_key
)
# Pre-cache has changes for the entire course because we'll need it for the ancestor info
modulestore().has_changes(modulestore().get_course(xblock.location.course_key, depth=None))
# Note that children aren't being returned until we have a use case.
return create_xblock_info(xblock, data=data, metadata=own_metadata(xblock), include_ancestor_info=True)

View File

@@ -100,9 +100,9 @@ class GetItemTest(ItemTest):
return html, resources
@ddt.data(
(1, 14, 16, 30, 30),
(2, 15, 17, 39, 32),
(3, 16, 18, 52, 34),
(1, 21, 23, 35, 37),
(2, 22, 24, 38, 39),
(3, 23, 25, 41, 41),
)
@ddt.unpack
def test_get_query_count(self, branching_factor, chapter_queries, section_queries, unit_queries, problem_queries):