Commit f1f2bd8f by Calen Pennington

Start adding tests for static replacement

parent 401f564e
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment