sapling/tests/test-allowunstable.t
Mateusz Kwapich 0a89353310 fb-hgext: fix test to match upstream fold changes
Summary: fold doesn't work without --from or --exact anymore

Test Plan: all tests are passing now

Reviewers: #mercurial, rmcelroy

Reviewed By: rmcelroy

Subscribers: mjpieters

Differential Revision: https://phabricator.intern.facebook.com/D4441874

Signature: t1:4441874:1484922064:1616827e2308b4b9d43e3ef1bd90f51c35a2a513
2017-01-20 06:23:56 -08:00

69 lines
1.6 KiB
Perl

Set up test environment.
$ . $TESTDIR/require-ext.sh directaccess evolve inhibit
$ extpath=`dirname $TESTDIR`
$ cp $extpath/hgext3rd/allowunstable.py $TESTTMP # use $TESTTMP substitution in message
$ cat >> $HGRCPATH << EOF
> [extensions]
> allowunstable=$TESTTMP/allowunstable.py
> directaccess=
> evolve=
> histedit=
> inhibit=
> rebase=
> [experimental]
> evolution = createmarkers
> evolutioncommands = fold split
> EOF
$ showgraph() {
> hg log --graph -T "{rev} {desc|firstline}"
> }
$ hg init allowunstable && cd allowunstable
$ hg debugbuilddag +5
Test that we can perform a splits and histedits in the middle of a stack.
Since these are interactive commands, just ensure that we don't get
an error message.
$ hg up 2
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg split
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg histedit
Test that we can perform a fold in the middle of a stack.
$ hg up 2
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg fold --from ".^"
2 changesets folded
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ showgraph
@ 5 r1
|
| o 4 r4
| |
| o 3 r3
| |
| o 2 r2
| |
| o 1 r1
|/
o 0 r0
Test that we can perform a rebase in the middle of a stack.
$ hg rebase -r 3 -d 5
rebasing 3:2dc09a01254d "r3"
note: rebase of 3:2dc09a01254d created no changes to commit
1 new unstable changesets
$ showgraph
@ 5 r1
|
| o 4 r4
| |
| x 3 r3
| |
| o 2 r2
| |
| o 1 r1
|/
o 0 r0