]> git.notmuchmail.org Git - notmuch/blobdiff - test/test-verbose
lib/database: delete stemmer on destroy
[notmuch] / test / test-verbose
index f29a9c7d655e106d5d500e4f27b18bc5e5528c41..8af6d9a97600b0ad867a42839841908a8c6c82e4 100755 (executable)
@@ -1,15 +1,17 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 test_description='the verbosity options of the test framework itself.'
 
-. ./test-lib.sh
+. $(dirname "$0")/test-lib.sh || exit 1
 
-test_expect_success 'print something in test_expect_success and pass' '
+test_begin_subtest 'print something in test_expect_success and pass'
+test_expect_success '
   echo "hello stdout" &&
   echo "hello stderr" >&2 &&
   true
 '
-test_expect_success 'print something in test_expect_success and fail' '
+test_begin_subtest 'print something in test_expect_success and fail'
+test_expect_success '
   echo "hello stdout" &&
   echo "hello stderr" >&2 &&
   false