##// END OF EJS Templates
test-completion: test completion of tags
Bryan O'Sullivan -
r18800:a624210e default
parent child Browse files
Show More
@@ -287,14 +287,15 b' Show all commands + options'
287 287 $ cd a
288 288 $ echo fee > fee
289 289 $ hg ci -q -Amfee
290 $ hg tag fee
290 291 $ mkdir fie
291 292 $ echo dead > fie/dead
292 293 $ echo live > fie/live
293 294 $ hg bookmark fo
294 $ hg branch fie
295 $ hg branch -q fie
295 296 $ hg ci -q -Amfie
296 297 $ echo fo > fo
297 $ hg branch default
298 $ hg branch -qf default
298 299 $ hg ci -q -Amfo
299 300 $ echo Fum > Fum
300 301 $ hg ci -q -AmFum
@@ -303,16 +304,33 b' Show all commands + options'
303 304 Test debugpathcomplete
304 305
305 306 $ hg debugpathcomplete f
307 fee
308 fie/
309 fo
306 310 $ hg debugpathcomplete -f f
311 fee
312 fie/dead
313 fie/live
314 fo
307 315
308 316 $ hg rm Fum
309 317 $ hg debugpathcomplete -r F
318 Fum
310 319
311 320 If one directory and no files match, give an ambiguous answer
312 321
313 322 $ hg debugpathcomplete fi
323 fie/
324 fie/.
314 325
315 326 Test debuglabelcomplete
316 327
317 328 $ hg debuglabelcomplete
329 Fum
330 default
331 fee
332 fo
333 tip
318 334 $ hg debuglabelcomplete f
335 fee
336 fo
General Comments 0
You need to be logged in to leave comments. Login now