mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
20 lines
290 B
Bash
20 lines
290 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description='diff --no-index'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
test_expect_success 'setup' '
|
||
|
mkdir a &&
|
||
|
mkdir b &&
|
||
|
echo 1 >a/1 &&
|
||
|
echo 2 >a/2
|
||
|
'
|
||
|
|
||
|
test_expect_success 'git diff --no-index directories' '
|
||
|
git diff --no-index a b >cnt
|
||
|
test $? = 1 && test_line_count = 14 cnt
|
||
|
'
|
||
|
|
||
|
test_done
|