Skip to content

Commit

Permalink
Fix new test
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Sep 26, 2017
1 parent 407872c commit a569f87
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions ckan/tests/test_none_root.py
@@ -1,19 +1,13 @@
# encoding: utf-8

from pylons 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)
app = helpers._get_test_app()
p.load(u'example_theme_v15_fanstatic')
content = app.get(u'/en/base.html')
assert u'example_theme.css' in content
assert u'example_theme.min.css' in content
assert u'href="/data/fanstatic/example_theme' in content
p.unload(u'example_theme_v15_fanstatic')

0 comments on commit a569f87

Please sign in to comment.