From 38a73044cf9ad4b642df3d74ff9aebc4a72b629c Mon Sep 17 00:00:00 2001 From: albfan Date: Sun, 17 May 2015 10:48:23 +0200 Subject: [PATCH] remove example test case file --- t/t0000-test-setup.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 t/t0000-test-setup.sh diff --git a/t/t0000-test-setup.sh b/t/t0000-test-setup.sh deleted file mode 100755 index b0c3702..0000000 --- a/t/t0000-test-setup.sh +++ /dev/null @@ -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