Skip to content

Commit

Permalink
add test case for none root fanstatic
Browse files Browse the repository at this point in the history
  • Loading branch information
fanjinfei authored and tino097 committed Sep 26, 2017
1 parent df51499 commit a75e2a1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ckan/tests/test_none_root.py
@@ -0,0 +1,19 @@
# encoding: utf-8

from ckan.common import config
import ckan.plugins as p
import ckan.config.middleware as middleware
import webtest
import ckan.tests.helpers as helpers


class TestNoneRootCKAN():
@helpers.change_config(u'ckan.root_path', u'/data/{{LANG}}')
def test_resource_url(self):
wsgiapp = middleware.make_app(config[u'global_conf'], **config)
app = webtest.TestApp(wsgiapp)
p.load(u'example_theme_v15_fanstatic')
content = app.get(u'/en/base.html')
assert u'example_theme.css' in content
assert u'href="/data/fanstatic/example_theme' in content
p.unload(u'example_theme_v15_fanstatic')

0 comments on commit a75e2a1

Please sign in to comment.