tests/test-topic-shelve.t
branchmercurial-3.9
changeset 2811 35d053d7bd87
parent 2810 604ddf1e1a8e
parent 2801 49494d0155b7
child 2812 6c4a05dc5b5c
child 3004 a456f55b3a6b
--- a/tests/test-topic-shelve.t	Tue Jul 25 15:17:52 2017 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,50 +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"
-  $ hg topic
-   * testing-shelve
-  $ hg ci -m "First commit" -A
-  adding a
-  $ hg topic
-   * testing-shelve
-  $ echo " World" >> a
-  $ hg stack
-  ### topic: testing-shelve
-  ### branch: default
-  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
-  $ hg stack
-  ### topic: testing-shelve
-  ### branch: default
-  t1@ First commit (current)
-
-unshelve test
--------------
-  $ hg unshelve
-  unshelving change 'default'
-  $ hg topic
-   * testing-shelve
-  $ hg stack
-  ### topic: testing-shelve
-  ### branch: default
-  t1@ First commit (current)