diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2014-07-19 13:27:00 +0200 |
---|---|---|
committer | Robin Rosenberg <robin.rosenberg@dewire.com> | 2014-07-19 07:31:45 -0400 |
commit | fd58cbcdee632100f239423194be9aaa951f7835 (patch) | |
tree | b1c823676c2d076d530f0803c9394f0ad976ebc5 /org.eclipse.jgit.pgm.test/tst/org/eclipse | |
parent | 48544e27ae3808807dc1960083d8e42c05e62af3 (diff) | |
download | jgit-fd58cbcdee632100f239423194be9aaa951f7835.tar.gz jgit-fd58cbcdee632100f239423194be9aaa951f7835.zip |
Don't prefix output from jgit status with '# '
C Git does not do it anymore
Bug: 439937
Change-Id: I20bdb787a00bba3e4adf269fd64ec6296bdc2a66
Diffstat (limited to 'org.eclipse.jgit.pgm.test/tst/org/eclipse')
-rw-r--r-- | org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/StatusTest.java | 150 |
1 files changed, 75 insertions, 75 deletions
diff --git a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/StatusTest.java b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/StatusTest.java index acc2be6b43..7ffcae598a 100644 --- a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/StatusTest.java +++ b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/StatusTest.java @@ -63,16 +63,16 @@ public class StatusTest extends CLIRepositoryTestCase { writeTrashFile("untracked", "untracked"); // Test untracked assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Untracked files:", // - "# ",// - "# \tstagedDeleted", // - "# \tstagedModified", // - "# \tstagedNew", // - "# \ttracked", // - "# \ttrackedDeleted", // - "# \ttrackedModified", // - "# \tuntracked", // + "On branch master", // + "Untracked files:", // + "",// + "\tstagedDeleted", // + "\tstagedModified", // + "\tstagedNew", // + "\ttracked", // + "\ttrackedDeleted", // + "\ttrackedModified", // + "\tuntracked", // "" // }, execute("git status")); // // Add to index @@ -83,30 +83,30 @@ public class StatusTest extends CLIRepositoryTestCase { git.add().addFilepattern("trackedDeleted").call(); // Test staged count assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Changes to be committed:", // - "# ", // - "# \tnew file: stagedDeleted", // - "# \tnew file: stagedModified", // - "# \tnew file: tracked", // - "# \tnew file: trackedDeleted", // - "# \tnew file: trackedModified", // - "# ", // - "# Untracked files:", // - "# ", // - "# \tstagedNew", // - "# \tuntracked", // + "On branch master", // + "Changes to be committed:", // + "", // + "\tnew file: stagedDeleted", // + "\tnew file: stagedModified", // + "\tnew file: tracked", // + "\tnew file: trackedDeleted", // + "\tnew file: trackedModified", // + "", // + "Untracked files:", // + "", // + "\tstagedNew", // + "\tuntracked", // "" // }, execute("git status")); // // Commit git.commit().setMessage("initial commit") .call(); assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Untracked files:", // - "# ", // - "# \tstagedNew", // - "# \tuntracked", // + "On branch master", // + "Untracked files:", // + "", // + "\tstagedNew", // + "\tuntracked", // "" // }, execute("git status")); // // Make some changes and stage them @@ -119,21 +119,21 @@ public class StatusTest extends CLIRepositoryTestCase { git.add().addFilepattern("stagedNew").call(); // Test staged/not-staged status assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Changes to be committed:", // - "# ", // - "# \tdeleted: stagedDeleted", // - "# \tmodified: stagedModified", // - "# \tnew file: stagedNew", // - "# ", // - "# Changes not staged for commit:", // - "# ", // - "# \tdeleted: trackedDeleted", // - "# \tmodified: trackedModified", // - "# ", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "On branch master", // + "Changes to be committed:", // + "", // + "\tdeleted: stagedDeleted", // + "\tmodified: stagedModified", // + "\tnew file: stagedNew", // + "", // + "Changes not staged for commit:", // + "", // + "\tdeleted: trackedDeleted", // + "\tmodified: trackedModified", // + "", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // // Create unmerged file @@ -144,20 +144,20 @@ public class StatusTest extends CLIRepositoryTestCase { git.rm().addFilepattern("trackedDeleted").call(); git.commit().setMessage("commit before branching").call(); assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "On branch master", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // // Checkout new branch git.checkout().setCreateBranch(true).setName("test").call(); // Test branch status assertArrayOfLinesEquals(new String[] { // git status output - "# On branch test", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "On branch test", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // // Commit change and checkout master again @@ -166,10 +166,10 @@ public class StatusTest extends CLIRepositoryTestCase { RevCommit testBranch = git.commit() .setMessage("changed unmerged in test branch").call(); assertArrayOfLinesEquals(new String[] { // git status output - "# On branch test", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "On branch test", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // git.checkout().setName("master").call(); @@ -178,38 +178,38 @@ public class StatusTest extends CLIRepositoryTestCase { git.add().addFilepattern("unmerged").call(); git.commit().setMessage("changed unmerged in master branch").call(); assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "On branch master", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // // Merge test branch into master git.merge().include(testBranch.getId()).call(); // Test unmerged status assertArrayOfLinesEquals(new String[] { // git status output - "# On branch master", // - "# Unmerged paths:", // - "# ", // - "# \tboth modified: unmerged", // - "# ", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "On branch master", // + "Unmerged paths:", // + "", // + "\tboth modified: unmerged", // + "", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // // Test detached head String commitId = db.getRef(Constants.MASTER).getObjectId().name(); git.checkout().setName(commitId).call(); assertArrayOfLinesEquals(new String[] { // git status output - "# Not currently on any branch.", // - "# Unmerged paths:", // - "# ", // - "# \tboth modified: unmerged", // - "# ", // - "# Untracked files:", // - "# ", // - "# \tuntracked", // + "Not currently on any branch.", // + "Unmerged paths:", // + "", // + "\tboth modified: unmerged", // + "", // + "Untracked files:", // + "", // + "\tuntracked", // "" // }, execute("git status")); // } |