/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 bzrlib/tests/test_config.py

  • Committer: Robert Collins
  • Date: 2007-11-18 19:56:39 UTC
  • mfrom: (3006 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3038.
  • Revision ID: robertc@robertcollins.net-20071118195639-m6zf3d5ljjw88kkn
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1133
1133
        self.assertEquals(expected_user, user)
1134
1134
        self.assertEquals(expected_password, password)
1135
1135
 
1136
 
    def  test_empty_config(self):
 
1136
    def test_empty_config(self):
1137
1137
        conf = config.AuthenticationConfig(_file=StringIO())
1138
1138
        self.assertEquals({}, conf._get_config())
1139
1139
        self._got_user_passwd(None, None, conf, 'http', 'foo.net')