summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/lib21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/lib b/tests/lib
index 0b88362..c51c4a6 100644
--- a/tests/lib
+++ b/tests/lib
@@ -534,6 +534,27 @@ t-gbp-unapplied-pq2qc () {
git checkout patch-queue/$branch
}
+t-gbp-example-prep () {
+ t-archive example 1.0-1
+ t-git-none
+ t-worktree 1.0
+
+ cd example
+
+ t-dgit fetch
+
+ git-checkout -b patch-queue/quilt-tip-2 patch-queue/quilt-tip
+ gbp pq rebase
+
+ echo '/* some comment */' >>src.c
+ git add src.c
+ git commit -m 'Add a comment to an upstream file'
+
+ t-gbp-unapplied-pq2qc
+
+ t-commit 'some updates' 1.0-2
+}
+
t-commit () {
local msg=$1
v=${2-1.$revision}