1
# Copyright 2004-2008 Canonical Ltd. All rights reserved.
6
from canonical.launchpad.testing.pages import PageTestSuite
9
here = os.path.dirname(os.path.realpath(__file__))
14
dir for dir in os.listdir(here)
15
if not dir.startswith('.') and os.path.isdir(os.path.join(here, dir)))
17
suite = unittest.TestSuite()
18
suite.addTest(PageTestSuite('.'))
19
for storydir in stories:
20
suite.addTest(PageTestSuite(storydir))