/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_pyutils.py

  • Committer: Jelmer Vernooij
  • Date: 2020-03-22 01:35:14 UTC
  • mfrom: (7490.7.6 work)
  • mto: This revision was merged to the branch mainline in revision 7499.
  • Revision ID: jelmer@jelmer.uk-20200322013514-7vw1ntwho04rcuj3
merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
            AttributeError, get_named_object, 'sys', 'NO_SUCH_ATTR')
63
63
 
64
64
 
65
 
 
66
65
class TestCalcParent_name(tests.TestCase):
67
66
    """Tests for calc_parent_name."""
68
67
 
85
84
        err = self.assertRaises(AssertionError, calc_parent_name, 'mod_name')
86
85
        self.assertEqual(
87
86
            "No parent object for top-level module 'mod_name'", err.args[0])
88