1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/usr/bin/python """Shelf - temporarily set aside changes, then bring them back.""" try: import bzrlib.commands import bzr_shelf def test_suite(): from bzrlib.tests.TestUtil import TestLoader import tests return TestLoader().loadTestsFromModule(tests) except ImportError: raise Exception("Bzr not found!") |