~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Aaron Bentley
  • Date: 2008-10-05 18:13:52 UTC
  • mto: (0.15.1 unshelve)
  • mto: This revision was merged to the branch mainline in revision 3820.
  • Revision ID: aaron@aaronbentley.com-20081005181352-dyz7x2ssg08yri3n
Implement shelf creator

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#    along with this program; if not, write to the Free Software
15
15
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
from bzrlib.tests.TestUtil import TestLoader
18
 
from bzrlib.plugins.shelf2.tests import test_serialize_transform
 
17
from bzrlib.tests.TestUtil import TestLoader, TestSuite
 
18
from bzrlib.plugins.shelf2.tests import (
 
19
    test_serialize_transform,
 
20
    test_prepare_shelf,
 
21
)
19
22
 
20
23
 
21
24
def test_suite():
22
 
    return TestLoader().loadTestsFromModule(test_serialize_transform)
 
25
    suite = TestSuite()
 
26
    suite.addTest(TestLoader().loadTestsFromModule(test_serialize_transform))
 
27
    suite.addTest(TestLoader().loadTestsFromModule(test_prepare_shelf))
 
28
    return suite