mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
15 lines
228 B
Bash
15 lines
228 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2009 Ilari Liusvaara
|
||
|
#
|
||
|
|
||
|
test_description='Test run command'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
test_expect_success 'start_command reports ENOENT' '
|
||
|
test-run-command start-command-ENOENT ./does-not-exist
|
||
|
'
|
||
|
|
||
|
test_done
|