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

  • Committer: Alexander Belchenko
  • Date: 2007-02-26 20:28:08 UTC
  • mto: This revision was merged to the branch mainline in revision 2302.
  • Revision ID: bialix@ukr.net-20070226202808-9t3wvwmh172lw6br
Don't look in cwd for CA bundle (note from John)

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        self._make_file()
60
60
        self.assertEqual('foo.bar', ca_bundle.get_ca_path(use_cache=False))
61
61
 
62
 
    def test_in_cwd(self):
63
 
        if sys.platform != 'win32':
64
 
            raise TestSkipped('Searching in cwd implemented only for win32')
65
 
        self._make_file()
66
 
        shouldbe = os.path.join(os.getcwd(), 'curl-ca-bundle.crt')
67
 
        self.assertEqual(shouldbe, ca_bundle.get_ca_path(use_cache=False))
68
 
        
69
62
    def test_in_path(self):
70
63
        if sys.platform != 'win32':
71
64
            raise TestSkipped('Searching in PATH implemented only for win32')