##// END OF EJS Templates
test-paths: fix up json output to match $TESTTMP on Windows...
Matt Harbison -
r28173:1ff28873 default
parent child Browse files
Show More
@@ -59,24 +59,24 b' with paths:'
59 59 formatter output with paths:
60 60
61 61 $ echo 'dupe:pushurl = https://example.com/dupe' >> .hg/hgrc
62 $ hg paths -Tjson
62 $ hg paths -Tjson | sed 's|\\\\|\\|g'
63 63 [
64 64 {
65 65 "name": "dupe",
66 66 "pushurl": "https://example.com/dupe",
67 "url": "$TESTTMP/b#tip"
67 "url": "$TESTTMP/b#tip" (glob)
68 68 },
69 69 {
70 70 "name": "expand",
71 "url": "$TESTTMP/a/$SOMETHING/bar"
71 "url": "$TESTTMP/a/$SOMETHING/bar" (glob)
72 72 }
73 73 ]
74 $ hg paths -Tjson dupe
74 $ hg paths -Tjson dupe | sed 's|\\\\|\\|g'
75 75 [
76 76 {
77 77 "name": "dupe",
78 78 "pushurl": "https://example.com/dupe",
79 "url": "$TESTTMP/b#tip"
79 "url": "$TESTTMP/b#tip" (glob)
80 80 }
81 81 ]
82 82 $ hg paths -Tjson -q unknown
General Comments 0
You need to be logged in to leave comments. Login now