Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
cae6e82b
Commit
cae6e82b
authored
11 years ago
by
Jay Zoldak
Browse files
Options
Downloads
Patches
Plain Diff
Knock 10 more seconds off the acceptance tests.
parent
19ee540a
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cms/djangoapps/contentstore/features/discussion-editor.py
+4
-2
4 additions, 2 deletions
cms/djangoapps/contentstore/features/discussion-editor.py
cms/djangoapps/contentstore/features/video.py
+6
-6
6 additions, 6 deletions
cms/djangoapps/contentstore/features/video.py
with
10 additions
and
8 deletions
cms/djangoapps/contentstore/features/discussion-editor.py
+
4
−
2
View file @
cae6e82b
...
...
@@ -26,6 +26,8 @@ def i_see_only_the_settings_and_values(step):
@step
(
'
creating a discussion takes a single click
'
)
def
discussion_takes_a_single_click
(
step
):
assert
(
not
world
.
is_css_present
(
'
.xmodule_DiscussionModule
'
))
component_css
=
'
.xmodule_DiscussionModule
'
assert
world
.
is_css_not_present
(
component_css
)
world
.
css_click
(
"
a[data-category=
'
discussion
'
]
"
)
assert
(
world
.
is_css_present
(
'
.xmodule_DiscussionModule
'
)
)
assert
world
.
is_css_present
(
component_css
)
This diff is collapsed.
Click to expand it.
cms/djangoapps/contentstore/features/video.py
+
6
−
6
View file @
cae6e82b
...
...
@@ -6,8 +6,6 @@ from xmodule.modulestore import Location
from
contentstore.utils
import
get_modulestore
############### ACTIONS ####################
@step
(
'
I have created a Video component$
'
)
def
i_created_a_video_component
(
step
):
world
.
create_component_instance
(
...
...
@@ -19,7 +17,7 @@ def i_created_a_video_component(step):
@step
(
'
I have created a Video component with subtitles$
'
)
def
i_created_a_video_component
(
step
):
def
i_created_a_video_component
_subtitles
(
step
):
step
.
given
(
'
I have created a Video component
'
)
# Store the current URL so we can return here
...
...
@@ -46,9 +44,11 @@ def does_not_autoplay(_step, video_type):
@step
(
'
creating a video takes a single click$
'
)
def
video_takes_a_single_click
(
_step
):
assert
(
not
world
.
is_css_present
(
'
.xmodule_VideoModule
'
))
component_css
=
'
.xmodule_VideoModule
'
assert
world
.
is_css_not_present
(
component_css
)
world
.
css_click
(
"
a[data-category=
'
video
'
]
"
)
assert
(
world
.
is_css_present
(
'
.xmodule_VideoModule
'
)
)
assert
world
.
is_css_present
(
component_css
)
@step
(
'
I edit the component$
'
)
...
...
@@ -93,7 +93,7 @@ def xml_only_video(step):
# Create a new Video component, but ensure that it doesn't have
# metadata. This allows us to test that we are correctly parsing
# out XML
video
=
world
.
ItemFactory
.
create
(
world
.
ItemFactory
.
create
(
parent_location
=
parent_location
,
category
=
'
video
'
,
data
=
'
<video youtube=
"
1.00:%s
"
></video>
'
%
youtube_id
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment