1
# Copyright 2009 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""Launchpad specific tests of bzrlib behavior."""
10
from lp.testing import TestCase
13
class TestBzrlib(TestCase):
14
def test_has_cextensions(self):
15
"""Ensure Bazaar C extensions are being used."""
17
import bzrlib._dirstate_helpers_pyx
19
self.fail("Bzr not built with C extensions.")
23
return unittest.TestLoader().loadTestsFromName(__name__)