chiark / gitweb /
stgit.el: Add "d" for a few diff commands, similar to git.el
[stgit] / t / t4000-upgrade.sh
CommitLineData
9536f818
KH
1#!/bin/sh
2#
3# Copyright (c) 2007 Karl Hasselström
4#
5
6test_description='Make sure that we can use old StGIT repositories'
7
8. ./test-lib.sh
9
10for ver in 0.12 0.8; do
11
12 tar zxf ../t4000-upgrade/$ver.tar.gz
13 cd $ver
14
15 test_expect_success \
16 "v$ver: Check the list of applied and unapplied patches" '
f9d9a062
CM
17 [ "$(echo $(stg series --applied --noprefix))" = "p0 p1 p2" ] &&
18 [ "$(echo $(stg series --unapplied --noprefix))" = "p3 p4" ]
9536f818
KH
19 '
20
21 test_expect_success \
22 "v$ver: Make sure the 'description' file is no longer there" '
23 [ ! -e .git/patches/master/description ] &&
24 [ "$(echo $(git config branch.master.description))" = "cool branch" ]
25 '
26
27 test_expect_success \
28 "v$ver: Make sure the 'current' file is no longer there" '
29 [ ! -e .git/patches/master/current ]
30 '
31
32 test_expect_success \
33 "v$ver: Make sure the base ref is no longer there" '
f03004e2 34 must_fail git show-ref --verify --quiet refs/bases/master
9536f818
KH
35 '
36
37 cd ..
38done
39
40test_done