diff 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
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestDirstate.java	Wed Sep 14 02:16:19 2011 +0200
+++ b/test/org/tmatesoft/hg/test/TestDirstate.java	Wed Sep 14 04:11:37 2011 +0200
@@ -57,4 +57,10 @@
 		repo = Configuration.get().own();
 		Assert.assertEquals("default", repo.getWorkingCopyBranchName());
 	}
+
+	public void testMixedNameCaseHandling() {
+		// 1. dirstate: /a/b/c, FileIterator: /a/B/C
+		// 2. dirstate: /a/B/C, FileIterator: /a/b/c
+		// 2. dirstate: /a/B/C, FileIterator: /A/b/C
+	}
 }