tests/test-topic-shelve.t
branchmercurial-3.9
changeset 3112 706402d70b3f
parent 3111 7518ff7f26da
parent 3004 a456f55b3a6b
child 3113 27305068c5c9
child 3120 add76a5eb1ae
--- a/tests/test-topic-shelve.t	Fri Oct 20 22:22:14 2017 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,52 +0,0 @@
-testing topic with shelve extension
-------------------------------------
-
-  $ . "$TESTDIR/testlib/topic_setup.sh"
-
-  $ hg init repo
-  $ cd repo
-  $ cat <<EOF >>.hg/hgrc
-  > [extensions]
-  > shelve=
-  > EOF
-
-  $ touch a
-  $ echo "Hello" >> a
-  $ hg topic "testing-shelve"
-  marked working directory as topic: testing-shelve
-  $ hg topic
-   * testing-shelve (0 changesets)
-  $ hg ci -m "First commit" -A
-  adding a
-  active topic 'testing-shelve' grew its first changeset
-  $ hg topic
-   * testing-shelve (1 changesets)
-  $ echo " World" >> a
-  $ hg stack
-  ### topic: testing-shelve
-  ### target: default (branch)
-  t1@ First commit (current)
-
-shelve test
------------
-
-  $ hg shelve
-  shelved as default
-  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
-  $ hg topic
-   * testing-shelve (1 changesets)
-  $ hg stack
-  ### topic: testing-shelve
-  ### target: default (branch)
-  t1@ First commit (current)
-
-unshelve test
--------------
-  $ hg unshelve
-  unshelving change 'default'
-  $ hg topic
-   * testing-shelve (1 changesets)
-  $ hg stack
-  ### topic: testing-shelve
-  ### target: default (branch)
-  t1@ First commit (current)