~launchpad-results/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lpresults/tracker/interfaces/testteam.py

  • Committer: Marc Tardif
  • Date: 2012-03-21 22:32:04 UTC
  • Revision ID: marc.tardif@canonical.com-20120321223204-8g7mvzzwmh8ifbrt
Added support for getting systems from a person (LP #899361)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2010-2011 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
__metaclass__ = type
 
5
 
 
6
__all__ = [
 
7
    "ITestTeam",
 
8
    ]
 
9
 
 
10
from lazr.restful.declarations import export_as_webservice_entry
 
11
 
 
12
from lpresults.registry.interfaces.team import ITeam
 
13
 
 
14
from lpresults.tracker.interfaces.testperson import ITestPerson
 
15
 
 
16
 
 
17
class ITestTeam(ITeam, ITestPerson):
 
18
    """A test team.
 
19
 
 
20
    This extends the concept of a team with test information.
 
21
    """
 
22
    export_as_webservice_entry(singular_name="team")