From fbc4cbf44108acfa7a563bc848402a0523081ccc Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 30 Aug 2007 13:00:58 +0200 Subject: [PATCH] Add basic test for stg status MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: David KÃ¥gedal Signed-off-by: David KÃ¥gedal Signed-off-by: Karl Hasselström --- t/t0002-status.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 t/t0002-status.sh diff --git a/t/t0002-status.sh b/t/t0002-status.sh new file mode 100755 index 0000000..c088d56 --- /dev/null +++ b/t/t0002-status.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# +# Copyright (c) 2007 David Kågedal +# + +test_description='Basic stg status + +Test that "stg status" works.' + +. ./test-lib.sh + +test_expect_success 'Run status on empty' \ + 'stg status' + +test_done -- [mdw]