~bzr-pqm/bzr/bzr.dev

1
2
3
4
5
6
7
8
9
10
11
12
from bzrlib.commands import Command

class cmd_test_plugins(Command):
    """Test every plugin that supports tests.

    """
    takes_args = []
    takes_options = []

    def run(self):
        import read_changeset
        read_changeset.test()