1
# Copyright 2010 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""See canonical.librarian.testing.fake."""
8
from canonical.librarian.testing.fake import FakeLibrarian as _FakeLibrarian
11
def FakeLibrarian(*args, **kwargs):
12
"""Forward to the new home with a deprecation warning."""
13
warnings.warn("Stale import: please import FakeLibrarian from "
14
"canonical.librarian.testing.fake instead.", DeprecationWarning,
16
return _FakeLibrarian(*args, **kwargs)