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
0a77dd44
Commit
0a77dd44
authored
Nov 28, 2012
by
Jay Zoldak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Smart accordion walkthrough working for cms-master branch
Conflicts: lms/envs/cms/acceptance.py
parent
668bc81d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
9 deletions
+32
-9
lms/djangoapps/courseware/features/smart-accordion.feature
+9
-9
lms/envs/cms/acceptance.py
+23
-0
No files found.
lms/djangoapps/courseware/features/smart-accordion.feature
View file @
0a77dd44
...
...
@@ -8,12 +8,12 @@ Feature: There are courses on the homepage
And
I log in
Then
I verify all the content of each course
Scenario
:
Navigate through course edX/edx101/edX_Studio_Reference
Given
I am registered for course
"edX/edx101/edX_Studio_Reference"
And
I log in
Then
I verify all the content of each course
#
Scenario: Navigate through course edX/edx101/edX_Studio_Reference
#
Given I am registered for course "edX/edx101/edX_Studio_Reference"
#
And I log in
#
Then I verify all the content of each course
Scenario
:
Navigate through course BerkeleyX/CS169.1x/2012_Fall
Given
I am registered for course
"BerkeleyX/CS169.1x/2012_Fall"
And
I log in
Then
I verify all the content of each course
\ No newline at end of file
# Scenario: Navigate through course BerkeleyX/CS169.1x/2012_Fall
# Given I am registered for course "BerkeleyX/CS169.1x/2012_Fall"
# And I log in
# Then I verify all the content of each course
\ No newline at end of file
lms/envs/cms/acceptance.py
0 → 100644
View file @
0a77dd44
"""
This config file is a copy of dev environment without the Debug
Toolbar. I it suitable to run against acceptance tests.
"""
from
.dev
import
*
# REMOVE DEBUG TOOLBAR
INSTALLED_APPS
=
tuple
(
e
for
e
in
INSTALLED_APPS
if
e
!=
'debug_toolbar'
)
INSTALLED_APPS
=
tuple
(
e
for
e
in
INSTALLED_APPS
if
e
!=
'debug_toolbar_mongo'
)
MIDDLEWARE_CLASSES
=
tuple
(
e
for
e
in
MIDDLEWARE_CLASSES
\
if
e
!=
'debug_toolbar.middleware.DebugToolbarMiddleware'
)
########################### LETTUCE TESTING ##########################
MITX_FEATURES
[
'DISPLAY_TOY_COURSES'
]
=
True
INSTALLED_APPS
+=
(
'lettuce.django'
,)
# INSTALLED_APPS += ('portal',)
LETTUCE_APPS
=
(
'portal'
,)
# dummy app covers the home page, login, registration, and course enrollment
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