Mercurial > evolve
comparison tests/test-obsolete-push.t @ 2776:4dd84054ebbb
test: remove reference to the graphlog extension
The feature is in core for ages.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 24 Jul 2017 04:41:31 +0200 |
parents | 5adb8bdb935e |
children | 41c9a4df628e 66796d7b5415 |
comparison
equal
deleted
inserted
replaced
2775:1d16c9dcb825 | 2776:4dd84054ebbb |
---|---|
1 $ cat >> $HGRCPATH <<EOF | 1 $ cat >> $HGRCPATH <<EOF |
2 > [defaults] | 2 > [defaults] |
3 > amend=-d "0 0" | 3 > amend=-d "0 0" |
4 > [extensions] | 4 > [extensions] |
5 > hgext.graphlog= | |
6 > EOF | 5 > EOF |
7 $ echo "evolve=$(echo $(dirname $TESTDIR))/hgext3rd/evolve/" >> $HGRCPATH | 6 $ echo "evolve=$(echo $(dirname $TESTDIR))/hgext3rd/evolve/" >> $HGRCPATH |
8 | 7 |
9 $ template='{rev}:{node|short}@{branch}({separate("/", obsolete, phase)}) {desc|firstline}\n' | 8 $ template='{rev}:{node|short}@{branch}({separate("/", obsolete, phase)}) {desc|firstline}\n' |
10 $ glog() { | 9 $ glog() { |
11 > hg glog --template "$template" "$@" | 10 > hg log -G --template "$template" "$@" |
12 > } | 11 > } |
13 | 12 |
14 Test outgoing, common A is suspended, B unstable and C secret, remote | 13 Test outgoing, common A is suspended, B unstable and C secret, remote |
15 has A and B, neither A or C should be in outgoing. | 14 has A and B, neither A or C should be in outgoing. |
16 | 15 |