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
a58ae9b6
Commit
a58ae9b6
authored
Mar 22, 2013
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored studio lettuce test section.py to use more of ui helpers
parent
e69931ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cms/djangoapps/contentstore/features/section.py
+2
-2
No files found.
cms/djangoapps/contentstore/features/section.py
View file @
a58ae9b6
...
...
@@ -105,13 +105,13 @@ def i_see_a_link_to_create_a_new_subsection(step):
@step
(
'the section release date picker is not visible$'
)
def
the_section_release_date_picker_not_visible
(
step
):
css
=
'div.edit-subsection-publish-settings'
assert
False
,
world
.
browser
.
find_by_css
(
css
)
.
visible
assert
not
world
.
css_visible
(
css
)
@step
(
'the section release date is updated$'
)
def
the_section_release_date_is_updated
(
step
):
css
=
'span.published-status'
status_text
=
world
.
browser
.
find_by_css
(
css
)
.
text
status_text
=
world
.
css_text
(
css
)
assert_equal
(
status_text
,
'Will Release: 12/25/2013 at 12:00am'
)
...
...
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