comparison tests/test-config.t @ 19086:8fb8dce3f9b6 stable

tests: rename from test-config-case.t to test-config.t for centralization Before this patch, there is no test script testing configuration handling generally. "test-config-case.t" seems to be specific for testing case sensitive configuration. This patch renames from "test-config-case.t" to "test-config.t" for centralization of tests around configuration handling.
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Fri, 26 Apr 2013 23:16:25 +0900
parents tests/test-config-case.t@73d20de5f30b
children 7d82ad4b3727
comparison
equal deleted inserted replaced
19085:be207d9b7e4b 19086:8fb8dce3f9b6
1 hide outer repo
2 $ hg init
3
4 Test case sensitive configuration
5
6 $ echo '[Section]' >> $HGRCPATH
7 $ echo 'KeY = Case Sensitive' >> $HGRCPATH
8 $ echo 'key = lower case' >> $HGRCPATH
9
10 $ hg showconfig Section
11 Section.KeY=Case Sensitive
12 Section.key=lower case
13