This commit is contained in:
Jeff Balogh 2011-08-30 14:03:35 -07:00
Родитель 0ff424a4bc
Коммит 04dc243476
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -54,7 +54,7 @@ class Webapp(Addon):
return cls.uncached.filter(status=status)
@property
def get_origin(self):
def origin(self):
parsed = urlparse.urlparse(self.manifest_url)
return '%s://%s' % (parsed.scheme, parsed.netloc)

Просмотреть файл

@ -43,7 +43,7 @@ class TestWebapp(test_utils.TestCase):
def test_get_url_path_more(self):
webapp = Webapp(app_slug='woo')
eq_(webapp.get_url_path(more=True), '/en-US/apps/woo/more')
def test_get_origin(self):
webapp = Webapp(manifest_url='http://www.xx.com:4000/randompath/manifest.webapp')
assert webapp.manifest_url.startswith(webapp.get_origin)
eq_(webapp.origin, 'http://www.xx.com:4000')