Commit bce8ee69 by Braden MacDonald

Fix bug when deleting first of two recently added blocks

parent 012e6e6f
...@@ -148,6 +148,27 @@ class LibraryEditPageTest(StudioLibraryTest): ...@@ -148,6 +148,27 @@ class LibraryEditPageTest(StudioLibraryTest):
add_component(self.lib_page, "problem", "Multiple Choice") add_component(self.lib_page, "problem", "Multiple Choice")
self.assertTrue(self.lib_page.nav_disabled(position)) self.assertTrue(self.lib_page.nav_disabled(position))
def test_delete_deletes_only_desired_block(self):
"""
Scenario: Ensure that when deleting XBlock only desired XBlock is deleted
Given that I have a library in Studio with no XBlocks
And I create Blank Common Problem XBlock
And I create Checkboxes XBlock
When I delete Blank Problem XBlock
Then Checkboxes XBlock is not deleted
And Blank Common Problem XBlock is deleted
"""
self.assertEqual(len(self.lib_page.xblocks), 0)
add_component(self.lib_page, "problem", "Blank Common Problem")
add_component(self.lib_page, "problem", "Checkboxes")
self.assertEqual(len(self.lib_page.xblocks), 2)
self.assertIn("Blank Common Problem", self.lib_page.xblocks[0].name)
self.assertIn("Checkboxes", self.lib_page.xblocks[1].name)
self.lib_page.click_delete_button(self.lib_page.xblocks[0].locator)
self.assertEqual(len(self.lib_page.xblocks), 1)
problem_block = self.lib_page.xblocks[0]
self.assertIn("Checkboxes", problem_block.name)
@ddt @ddt
class LibraryNavigationTest(StudioLibraryTest): class LibraryNavigationTest(StudioLibraryTest):
......
...@@ -12,9 +12,11 @@ ...@@ -12,9 +12,11 @@
<div class="container-paging-header"></div> <div class="container-paging-header"></div>
<div>
% for item in items: % for item in items:
${item['content']} ${item['content']}
% endfor % endfor
</div>
% if can_add: % if can_add:
<div class="add-xblock-component new-component-item adding"></div> <div class="add-xblock-component new-component-item adding"></div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment