~launchpad-results/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lpresults/tracker/interfaces/testsystem.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:
25
25
    SystemSearchParams,
26
26
    )
27
27
 
 
28
from lpresults.registry.interfaces.person import PersonParamsMixin
 
29
 
28
30
from lpresults.tracker.interfaces.testrank import (
29
31
    IHasTestRankSystems,
30
32
    ITestRankSystem,
58
60
        """Return the default set of systems without filtering."""
59
61
 
60
62
 
61
 
class TestSystemSearchParams(SystemSearchParams, TestTargetParamsMixin):
 
63
class TestSystemSearchParams(
 
64
    SystemSearchParams, PersonParamsMixin, TestTargetParamsMixin):
62
65
    """Encapsulates search parameters for ITestSystemSet.search()"""
63
66
 
64
67
    def __init__(self, id=None, date_modified=None, **kwargs):