~gagern/bzr-svn/bug242321

« back to all changes in this revision

Viewing changes to tests/test_scheme.py

  • Committer: Jelmer Vernooij
  • Date: 2008-05-02 23:54:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1116.
  • Revision ID: jelmer@samba.org-20080502235457-lh8ppdzxj8pot424
Fix more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
                    BranchingScheme, TrunkBranchingScheme, 
24
24
                    SingleBranchingSchemev0, 
25
25
                    SingleBranchingScheme, 
26
 
                    UnknownBranchingScheme, InvalidSvnBranchPath, 
 
26
                    UnknownBranchingScheme, 
27
27
                    parse_list_scheme_text, find_commit_paths, 
28
28
                    guess_scheme_from_branch_path, guess_scheme_from_history,
29
29
                    guess_scheme_from_path, scheme_from_branch_list)
30
30
 
31
 
class TestErrors(TestCase):
32
 
    def test_invalidsvnbranchpath_nonascii(self):
33
 
        InvalidSvnBranchPath('\xc3\xb6', None)
34
 
 
35
 
 
36
31
class BranchingSchemeTest(TestCase):
37
32
    def test_is_branch(self):
38
33
        self.assertRaises(NotImplementedError, BranchingScheme().is_branch, "")