Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
bce8ee69
Commit
bce8ee69
authored
Jan 13, 2015
by
Braden MacDonald
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug when deleting first of two recently added blocks
parent
012e6e6f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
cms/templates/js/mock/mock-container-paged-xblock.underscore
+0
-0
common/test/acceptance/tests/studio/test_studio_library.py
+21
-0
lms/templates/studio_render_paged_children_view.html
+2
-0
No files found.
cms/templates/js/mock/mock-container-paged-xblock.underscore
View file @
bce8ee69
This diff is collapsed.
Click to expand it.
common/test/acceptance/tests/studio/test_studio_library.py
View file @
bce8ee69
...
@@ -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
):
...
...
lms/templates/studio_render_paged_children_view.html
View file @
bce8ee69
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment