blob: 618ebc7cfc7b15b6b647481cbee10da89035731b [file] [log] [blame]
#!/bin/sh
#
# Copyright (c) 2006 Ilpo Järvinen
#
test_description='Test goto to the current patch.
'
. ./test-lib.sh
test_expect_success \
'Initialize the StGIT repository' \
'stg init
'
test_expect_success \
'Create the first patch' \
'
stg new foo -m "Foo Patch" &&
echo foo > test &&
stg add test &&
stg refresh
'
test_expect_success \
'Goto current patch' \
'
stg goto `stg top`
'
test_done