comparison test/org/tmatesoft/hg/test/TestDirstate.java @ 293:9774f47d904d

Issue 13: Status reports filenames with case other than in dirstate incorrectly
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 14 Sep 2011 04:11:37 +0200
parents 954763c82cc3
children 02f2963c70fa
comparison
equal deleted inserted replaced
292:a415fe296a50 293:9774f47d904d
55 repo = Configuration.get().find("log-branches"); 55 repo = Configuration.get().find("log-branches");
56 Assert.assertEquals("test", repo.getWorkingCopyBranchName()); 56 Assert.assertEquals("test", repo.getWorkingCopyBranchName());
57 repo = Configuration.get().own(); 57 repo = Configuration.get().own();
58 Assert.assertEquals("default", repo.getWorkingCopyBranchName()); 58 Assert.assertEquals("default", repo.getWorkingCopyBranchName());
59 } 59 }
60
61 public void testMixedNameCaseHandling() {
62 // 1. dirstate: /a/b/c, FileIterator: /a/B/C
63 // 2. dirstate: /a/B/C, FileIterator: /a/b/c
64 // 2. dirstate: /a/B/C, FileIterator: /A/b/C
65 }
60 } 66 }