Mercurial > hg4j
diff cmdline/org/tmatesoft/hg/console/Main.java @ 609:e4a71afd3c71
Test TODOs: test for ConfigFile (covering %include and %unset directives)
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 08 May 2013 17:11:45 +0200 |
parents | 3c4db86e8c1f |
children | 6526d8adbc0f |
line wrap: on
line diff
--- a/cmdline/org/tmatesoft/hg/console/Main.java Tue May 07 21:27:51 2013 +0200 +++ b/cmdline/org/tmatesoft/hg/console/Main.java Wed May 08 17:11:45 2013 +0200 @@ -107,7 +107,6 @@ // m.testCheckout(); // m.tryExtensions(); // m.dumpBookmarks(); -// m.readConfigFile(); // m.dumpCommitLastMessage(); // m.buildFileLog(); // m.testConsoleLog(); @@ -210,19 +209,6 @@ } } - // TODO as test - private void readConfigFile() throws Exception { - ConfigFile configFile = new ConfigFile(hgRepo.getSessionContext()); - configFile.addLocation(new File(System.getProperty("user.home"), "test-cfg/aaa/config1")); - for (String s : configFile.getSectionNames()) { - System.out.printf("[%s]\n", s); - for (Map.Entry<String, String> e : configFile.getSection(s).entrySet()) { - System.out.printf("%s = %s\n", e.getKey(), e.getValue()); - } - } - - } - private void dumpCommitLastMessage() throws Exception { System.out.println(hgRepo.getCommitLastMessage()); }