~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/vocabularies/tests/test_doc.py

  • Committer: Julian Edwards
  • Date: 2010-08-26 08:02:08 UTC
  • mfrom: (11447 launchpad)
  • mto: This revision was merged to the branch mainline in revision 11453.
  • Revision ID: julian.edwards@canonical.com-20100826080208-sut7s35g9z0qtk9v
merge devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2010 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
"""
 
5
Run the doctests.
 
6
"""
 
7
 
 
8
import os
 
9
 
 
10
from lp.services.testing import build_doctest_suite
 
11
 
 
12
 
 
13
here = os.path.dirname(os.path.realpath(__file__))
 
14
 
 
15
 
 
16
def test_suite():
 
17
    return build_doctest_suite(here, '')