https://github.com/git/git
Raw File
Tip revision: 3d9c5b5c4461957fbbc0479e037990db04ebb740 authored by Junio C Hamano on 30 July 2017, 22:06:06 UTC
Git 2.12.4
Tip revision: 3d9c5b5
t0062-revision-walking.sh
#!/bin/sh
#
# Copyright (c) 2012 Heiko Voigt
#

test_description='Test revision walking api'

. ./test-lib.sh

cat >run_twice_expected <<-EOF
1st
 > add b
 > add a
2nd
 > add b
 > add a
EOF

test_expect_success 'setup' '
	echo a > a &&
	git add a &&
	git commit -m "add a" &&
	echo b > b &&
	git add b &&
	git commit -m "add b"
'

test_expect_success 'revision walking can be done twice' '
	test-revision-walking run-twice >run_twice_actual &&
	test_cmp run_twice_expected run_twice_actual
'

test_done
back to top