We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcc0436 commit 09d7dd7Copy full SHA for 09d7dd7
t/t0003-attributes.sh
@@ -44,6 +44,13 @@ test_expect_success 'setup' '
44
45
test_expect_success 'command line checks' '
46
47
+ test_must_fail git check-attr &&
48
+ test_must_fail git check-attr -- &&
49
+ test_must_fail git check-attr -- f &&
50
+ echo "f" | test_must_fail git check-attr --stdin &&
51
+ echo "f" | test_must_fail git check-attr --stdin -- f &&
52
+ echo "f" | test_must_fail git check-attr --stdin test -- f &&
53
+ echo "f" | test_must_fail git check-attr --stdin test f &&
54
test_must_fail git check-attr "" -- f
55
56
'
0 commit comments