1
0
mirror of https://github.com/albfan/bash-ini-parser.git synced 2025-04-19 13:22:14 +03:00

remove example test case file

This commit is contained in:
albfan 2015-05-17 10:48:23 +02:00
parent f39fc72170
commit 38a73044cf

View File

@ -1,30 +0,0 @@
#!/bin/sh
test_description="Show basic features of Sharness"
. sharness/sharness.sh
test_expect_success "Success is reported like this" "
echo hello world | grep hello
"
test_expect_success "Commands are chained this way" "
test x = 'x' &&
test 2 -gt 1 &&
echo success
"
return_42() {
echo "Will return soon"
return 42
}
test_expect_success "You can test for a specific exit code" "
test_expect_code 42 return_42
"
test_expect_failure SKIP "We expect this to fail" "
test 1 = 2
"
test_done