mediagoblin/mediagoblin/tests/test_staticdirect.py

10 lines
376 B
Python

from mediagoblin.tools import staticdirect
def test_staticdirect():
sdirect = staticdirect.StaticDirect(
{None: "/static/",
"theme": "http://example.org/themestatic"})
assert sdirect("css/monkeys.css") == "/static/css/monkeys.css"
assert sdirect("images/lollerskate.png", "theme") == \
"http://example.org/themestatic/images/lollerskate.png"