You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
416 B
23 lines
416 B
19 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2006 Carl D. Worth
|
||
|
#
|
||
|
|
||
|
test_description='Test of git-add, including the -- option.'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
test_expect_success \
|
||
|
'Test of git-add' \
|
||
|
'touch foo && git-add foo'
|
||
|
|
||
|
test_expect_success \
|
||
|
'Post-check that foo is in the index' \
|
||
|
'git-ls-files foo | grep foo'
|
||
|
|
||
|
test_expect_success \
|
||
|
'Test that "git-add -- -q" works' \
|
||
|
'touch -- -q && git-add -- -q'
|
||
|
|
||
|
test_done
|