1
# Copyright 2009 Canonical Ltd. All rights reserved.
3
"""Launchpad frontpage FunkLoad test"""
10
from funkload.utils import Data
11
from funkload.FunkLoadTestCase import FunkLoadTestCase
12
from webunit.utility import Upload
14
from canonical.config import config
16
class Frontpage(FunkLoadTestCase):
17
"""Test anonymous access to the Launchpad front page."""
20
"""Setting up test."""
22
self.root_url = 'https://%s/' % config.vhost.mainsite.hostname
24
def test_frontpage(self):
25
self.get(self.root_url, description="Get frontpage")
28
"""Setting up test."""
29
self.logd("tearDown.\n")
32
if __name__ in ('main', '__main__'):