/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: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

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
 
65
66
class TestCalcParent_name(tests.TestCase):
66
67
    """Tests for calc_parent_name."""
67
68
 
84
85
        err = self.assertRaises(AssertionError, calc_parent_name, 'mod_name')
85
86
        self.assertEqual(
86
87
            "No parent object for top-level module 'mod_name'", err.args[0])
 
88