~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revisionnamespaces.py

[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)

> When you use flat string on Windows for base part of file names then all
> derived file names is always representing as flat string. On Linux/Cygwin as
> I can see in situations when path cannot be represented as flat string (or in
> ascii encoding?) it silently converted to unicode. As result we have
> different behaviour with non-ascii (non-english) file names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        self.assertEquals(RevisionSpec('ancestor:.').in_history(b3).rev_id,
81
81
                          'b@r-0-4')
82
82
 
83
 
        # This should be in the revision store, but not in revision-history
84
 
        self.assertEquals((None, 'b@r-0-4'),
85
 
                RevisionSpec('revid:b@r-0-4').in_history(b))
86
 
 
87
83
    def test_branch_namespace(self):
88
84
        """Ensure that the branch namespace pulls in the requisite content."""
89
85
        self.build_tree(['branch1/', 'branch1/file', 'branch2/'])