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
f1f2bd8f
Commit
f1f2bd8f
authored
Feb 04, 2013
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start adding tests for static replacement
parent
401f564e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
common/djangoapps/static_replace/__init__.py
+0
-0
common/djangoapps/static_replace/test/test_static_replace.py
+20
-0
No files found.
common/djangoapps/static_replace.py
→
common/djangoapps/static_replace
/__init__
.py
View file @
f1f2bd8f
File moved
common/djangoapps/static_replace/test/test_static_replace.py
0 → 100644
View file @
f1f2bd8f
from
nose.tools
import
assert_equals
from
static_replace
import
replace_static_urls
,
replace_course_urls
DATA_DIRECTORY
=
'data_dir'
COURSE_ID
=
'org/course/run'
def
test_multi_replace
():
static_source
=
'"/static/file.png"'
course_source
=
'"/course/file.png"'
assert_equals
(
replace_static_urls
(
static_source
,
DATA_DIRECTORY
),
replace_static_urls
(
replace_static_urls
(
static_source
,
DATA_DIRECTORY
),
DATA_DIRECTORY
)
)
assert_equals
(
replace_course_urls
(
course_source
,
COURSE_ID
),
replace_course_urls
(
replace_course_urls
(
course_source
,
COURSE_ID
),
COURSE_ID
)
)
assert
False
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