#!/bin/bash
set -e
. tests/lib

t-setup-import examplegit
t-tstunt-parsechangelog

cd $p

test-push () {
	t-commit "$1"
	t-dgit -wgf build-source
	t-dgit push
}

for count in 1 2; do
	t-oldtag
	test-push "oldtag $count"

	t-newtag
	test-push "newtag $count"
done

t-ok

