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
83d2c808
Commit
83d2c808
authored
Aug 05, 2013
by
JonahStanley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added comments saying why tests were skipped
Added comment Removed set_trace
parent
7e67ee37
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
cms/djangoapps/contentstore/features/checklists.feature
+2
-2
cms/djangoapps/contentstore/features/checklists.py
+2
-0
cms/djangoapps/contentstore/features/course-team.py
+0
-1
cms/djangoapps/contentstore/features/problem-editor.feature
+2
-2
No files found.
cms/djangoapps/contentstore/features/checklists.feature
View file @
83d2c808
...
...
@@ -10,7 +10,7 @@ Feature: Course checklists
Then
I can check and uncheck tasks in a checklist
And
They are correctly selected after reloading the page
#CHROME ONLY
#CHROME ONLY
, Test effectively skipped in firefox due to issues getting link to be active
Scenario
:
A
task can link to a location within Studio
Given
I have opened Checklists
When
I select a link to the course outline
...
...
@@ -18,7 +18,7 @@ Feature: Course checklists
And
I press the browser back button
Then
I am brought back to the course outline in the correct state
#CHROME ONLY
#CHROME ONLY
Test effectively skipped in firefox due to issues getting link to be active
Scenario
:
A
task can link to a location outside Studio
Given
I have opened Checklists
When
I select a link to help page
...
...
cms/djangoapps/contentstore/features/checklists.py
View file @
83d2c808
...
...
@@ -61,6 +61,8 @@ def i_select_a_link_to_the_course_outline(step):
@step
(
'I am brought to the course outline page$'
)
def
i_am_brought_to_course_outline
(
step
):
if
world
.
is_firefox
():
return
assert_in
(
'Course Outline'
,
world
.
css_text
(
'.outline .page-header'
))
assert_equal
(
1
,
len
(
world
.
browser
.
windows
))
...
...
cms/djangoapps/contentstore/features/course-team.py
View file @
83d2c808
...
...
@@ -44,7 +44,6 @@ def add_other_user(_step, name):
email_css
=
'input#user-email-input'
world
.
css_fill
(
email_css
,
name
+
EMAIL_EXTENSION
)
world
.
trigger_event
(
email_css
)
from
pdb
import
set_trace
;
set_trace
()
confirm_css
=
'form.create-user button.action-primary'
world
.
css_click
(
confirm_css
)
...
...
cms/djangoapps/contentstore/features/problem-editor.feature
View file @
83d2c808
...
...
@@ -44,13 +44,13 @@ Feature: Problem Editor
When
I edit and select Settings
Then
if I set the weight to
"abc"
, it remains unset
#CHROME ONLY
#CHROME ONLY
, firefox will behave differently, it will display as 2.34 and persist as 2
Scenario
:
User cannot type decimal values integer number field
Given
I have created a Blank Common Problem
When
I edit and select Settings
Then
if I set the max attempts to
"2.34"
, it displays initially as
"234"
, and is persisted as
"234"
#CHROME ONLY
#CHROME ONLY
, skipped in firefox for reason above
Scenario
:
User cannot type out of range values in an integer number field
Given
I have created a Blank Common Problem
When
I edit and select Settings
...
...
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