~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Michael Ellerman
  • Date: 2005-10-19 13:14:03 UTC
  • mto: (0.3.1 shelf-dev) (325.1.2 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 246.
  • Revision ID: michael@ellerman.id.au-20051019131403-1a486e7fd9daa840
Add basic tests for shelve --all, and unshelve.
Also test shelve with nothing to shelve.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
bzrlib.commands.register_command(cmd_shelve)
41
41
bzrlib.commands.register_command(cmd_unshelve)
 
42
 
 
43
def test_suite():
 
44
    from bzrlib.selftest.TestUtil import TestLoader
 
45
    import tests
 
46
    return TestLoader().loadTestsFromModule(tests)