1
# Copyright 2010-2011 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
10
from lazr.restful.declarations import export_as_webservice_entry
12
from lpresults.registry.interfaces.team import ITeam
14
from lpresults.tracker.interfaces.testperson import ITestPerson
17
class ITestTeam(ITeam, ITestPerson):
20
This extends the concept of a team with test information.
22
export_as_webservice_entry(singular_name="team")