# HG changeset patch # User Patrick Mezard # Date 1340107332 -7200 # Node ID fd43e3908f091815e5eb4e8514520630413f2672 # Parent 0d87b1fbf32bed8d3f760c86e295480b6f76402d test-obsolete-rebase.t: move --keep test from test-obsolete.t diff -r 0d87b1fbf32b -r fd43e3908f09 tests/test-obsolete-rebase.t --- a/tests/test-obsolete-rebase.t Tue Jun 19 18:02:34 2012 +0200 +++ b/tests/test-obsolete-rebase.t Tue Jun 19 14:02:12 2012 +0200 @@ -28,6 +28,10 @@ $ hg ci -Am addb adding b created new head + $ hg rebase -d 1 --keep + abort: rebase --keep option is unsupported with obsolete extension + (see 'hg help obsolete') + [255] $ hg rebase -d 1 $ glog --hidden @ 3:03f017c74faa@default(draft) addb diff -r 0d87b1fbf32b -r fd43e3908f09 tests/test-obsolete.t --- a/tests/test-obsolete.t Tue Jun 19 18:02:34 2012 +0200 +++ b/tests/test-obsolete.t Tue Jun 19 14:02:12 2012 +0200 @@ -454,27 +454,3 @@ adding file changes added 1 changesets with 1 changes to 1 files (+1 heads) $ cd .. - - -Test compatibility with other extensions - - $ hg init compat - $ cd compat - $ echo a > a - $ hg ci -Am adda - adding a - $ echo a >> a - $ hg ci -m changea - $ hg up 0 - 1 files updated, 0 files merged, 0 files removed, 0 files unresolved - $ echo b > b - $ hg ci -Am addb - adding b - created new head - -Test rebase --keep warning - - $ hg --config extensions.rebase= rebase -d 1 --keep - abort: rebase --keep option is unsupported with obsolete extension - (see 'hg help obsolete') - [255]