~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-14 16:24:31 UTC
  • mfrom: (2978.5.2 launchpad_plugin_162494)
  • Revision ID: pqm@pqm.ubuntu.com-20071114162431-vdx7u28fh4et71b6
(John Arbash Meinel) Fix 'bzr register-branch' (bug #162494)

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')