~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_cat.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
"""
21
21
 
22
22
import os
23
 
import sys
24
23
 
25
24
from bzrlib.tests.blackbox import TestCaseWithTransport
26
25
 
129
128
        out, err = self.run_bzr_subprocess(['cat', url])
130
129
        self.assertEqual('contents of README\n', out)
131
130
 
132
 
    def test_cat_nonexistent_branch(self):
133
 
        if sys.platform == "win32":
134
 
            location = "C:/i/do/not/exist"
135
 
        else:
136
 
            location = "/i/do/not/exist"
137
 
        self.run_bzr_error(['^bzr: ERROR: Not a branch'], ['cat', location])