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
459f2e07
Commit
459f2e07
authored
Sep 29, 2015
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable some tests for comprehensive theming
Depends on functionality that has been temporarily reverted
parent
aa8ecca5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
lms/djangoapps/courseware/tests/test_comp_theming.py
+3
-0
No files found.
lms/djangoapps/courseware/tests/test_comp_theming.py
View file @
459f2e07
"""Tests of comprehensive theming."""
import
unittest
from
django.conf
import
settings
from
django.test
import
TestCase
...
...
@@ -20,6 +21,7 @@ class TestComprehensiveTheming(TestCase):
staticfiles
.
finders
.
_finders
.
clear
()
# pylint: disable=protected-access
@with_comp_theme
(
settings
.
REPO_ROOT
/
'themes/red-theme'
)
@unittest.skip
(
"Disabled until we can release theming to production"
)
def
test_red_footer
(
self
):
resp
=
self
.
client
.
get
(
'/'
)
self
.
assertEqual
(
resp
.
status_code
,
200
)
...
...
@@ -63,6 +65,7 @@ class TestComprehensiveTheming(TestCase):
do_the_test
(
self
)
@unittest.skip
(
"Disabled until we can release theming to production"
)
def
test_default_logo_image
(
self
):
result
=
staticfiles
.
finders
.
find
(
'images/logo.png'
)
self
.
assertEqual
(
result
,
settings
.
REPO_ROOT
/
'lms/static/images/logo.png'
)
...
...
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