/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_registry.py

Support user.signingkey configuration variable in .git/config.

Merged from https://code.launchpad.net/~jelmer/brz/local-git-key/+merge/381000

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    tests,
27
27
    )
28
28
 
 
29
from ..sixish import viewitems
29
30
 
30
31
 
31
32
class TestRegistry(tests.TestCase):
217
218
        self.assertEqual({'two': 'one', 'three': 'one'}, a_registry.aliases())
218
219
        self.assertEqual(
219
220
            {'one': ['three', 'two']},
220
 
            {k: sorted(v) for (k, v) in a_registry.alias_map().items()})
 
221
            {k: sorted(v) for (k, v) in viewitems(a_registry.alias_map())})
221
222
 
222
223
    def test_registry_alias_exists(self):
223
224
        a_registry = registry.Registry()