/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_version_info.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:
16
16
 
17
17
"""Tests for version_info"""
18
18
 
19
 
from io import (
20
 
    BytesIO,
21
 
    StringIO,
22
 
    )
23
19
import os
24
20
 
25
21
from .. import (
27
23
    tests,
28
24
    version_info_formats,
29
25
    )
 
26
from ..sixish import (
 
27
    BytesIO,
 
28
    StringIO,
 
29
    )
30
30
from . import TestCaseWithTransport
31
31
from ..rio import read_stanzas, read_stanzas_unicode
32
32