Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 4D443429E5A for ; Sat, 26 Oct 2013 15:02:25 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1GJCsLJHbdKP for ; Sat, 26 Oct 2013 15:02:20 -0700 (PDT) Received: from mail-wg0-f42.google.com (mail-wg0-f42.google.com [74.125.82.42]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 5416F429E42 for ; Sat, 26 Oct 2013 15:02:17 -0700 (PDT) Received: by mail-wg0-f42.google.com with SMTP id n12so2149305wgh.5 for ; Sat, 26 Oct 2013 15:02:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=ScyFaTvWFGQO5KmJA0ddraqtV1Ac65/3gFp90psXRB4=; b=OYVhbzkmQeA91a3WRUTIA+AlKu/5BaZeqE0g9cYfXjAyNXj9I/XlxdzXy8bCAJ+XfV /fCabWVFTOiFL+quWYTQ9xOEcESYaLiZ1+fR4PwN0FhNQ79z2ngSCioOHG74+4OU1275 +CpOLH3RauvKP60szvu9rj0tB+DRCkY8OSIp4sKhdgxtWYMdhS+KFUry0jjzg0NaWmOA zqDFvlxelFFZRdx9PmU0PMCbcWalWT+paj3xvET2FcICmgKTErDL9o6c7snq+dBPolvR XCuzG2FZB5yiFccZ2JOxr1Nbeo6021M3M06l1lFRlT+IYBhx7r/JzgeI72nV++UybRE7 opJQ== X-Received: by 10.194.11.67 with SMTP id o3mr12909936wjb.0.1382824936175; Sat, 26 Oct 2013 15:02:16 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPSA id bs15sm19764627wib.10.2013.10.26.15.02.15 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 26 Oct 2013 15:02:15 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH 2/4] pick: Change the test names and print out for pick tests Date: Sat, 26 Oct 2013 23:02:06 +0100 Message-Id: <1382824928-3771-3-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1382824928-3771-1-git-send-email-markwalters1009@gmail.com> References: <1382824928-3771-1-git-send-email-markwalters1009@gmail.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Oct 2013 22:02:25 -0000 Change from the pick name to the tree name --- contrib/notmuch-pick/test/emacs-pick | 28 ++++++++++++++-------------- 1 files changed, 14 insertions(+), 14 deletions(-) diff --git a/contrib/notmuch-pick/test/emacs-pick b/contrib/notmuch-pick/test/emacs-pick index fae6e9e..2cc3edc 100755 --- a/contrib/notmuch-pick/test/emacs-pick +++ b/contrib/notmuch-pick/test/emacs-pick @@ -1,6 +1,6 @@ #!/usr/bin/env bash -test_description="emacs pick interface" +test_description="emacs tree view interface" . test-lib.sh EXPECTED=$TEST_DIRECTORY/pick.expected-output @@ -14,7 +14,7 @@ hello EOF test_expect_equal_file OUTPUT EXPECTED -test_begin_subtest "Basic notmuch-pick view in emacs" +test_begin_subtest "Basic notmuch-tree view in emacs" test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (require (quote notmuch-tree)) (notmuch-tree "tag:inbox") @@ -23,7 +23,7 @@ test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox -test_begin_subtest "Refreshed notmuch-pick view in emacs" +test_begin_subtest "Refreshed notmuch-tree view in emacs" test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (require (quote notmuch-tree)) (notmuch-tree "tag:inbox") @@ -38,7 +38,7 @@ test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox # correctly and, in a separate test, that the database is updated # correctly. -test_begin_subtest "Tag message in notmuch pick view (display)" +test_begin_subtest "Tag message in notmuch tree view (display)" test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (require (quote notmuch-tree)) (notmuch-tree "tag:inbox") @@ -49,11 +49,11 @@ test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox-tagged -test_begin_subtest "Tag message in notmuch pick view (database)" +test_begin_subtest "Tag message in notmuch tree view (database)" output=$(notmuch search --output=messages 'tag:test_tag') test_expect_equal "$output" "id:877h1wv7mg.fsf@inf-8657.int-evry.fr" -test_begin_subtest "Untag message in notmuch pick view" +test_begin_subtest "Untag message in notmuch tree view" test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (require (quote notmuch-tree)) (notmuch-tree "tag:inbox") @@ -64,11 +64,11 @@ test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox -test_begin_subtest "Untag message in notmuch pick view (database)" +test_begin_subtest "Untag message in notmuch tree view (database)" output=$(notmuch search --output=messages 'tag:test_tag') test_expect_equal "$output" "" -test_begin_subtest "Tag thread in notmuch pick view" +test_begin_subtest "Tag thread in notmuch tree view" test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (require (quote notmuch-tree)) (notmuch-tree "tag:inbox") @@ -80,7 +80,7 @@ test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox-thread-tagged -test_begin_subtest "Tag message in notmuch pick view (database)" +test_begin_subtest "Tag message in notmuch tree view (database)" output=$(notmuch search --output=messages 'tag:test_thread_tag') test_expect_equal "$output" \ "id:87ocn0qh6d.fsf@yoom.home.cworth.org @@ -91,7 +91,7 @@ id:20091117203301.GV3165@dottiness.seas.harvard.edu id:87iqd9rn3l.fsf@vertex.dottedmag id:20091117190054.GU3165@dottiness.seas.harvard.edu" -test_begin_subtest "Untag thread in notmuch pick view" +test_begin_subtest "Untag thread in notmuch tree view" test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (require (quote notmuch-tree)) (notmuch-tree "tag:inbox") @@ -103,7 +103,7 @@ test_emacs '(add-to-list (quote load-path) "'$PICK_DIR'") (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox -test_begin_subtest "Untag message in notmuch pick view (database)" +test_begin_subtest "Untag message in notmuch tree view (database)" output=$(notmuch search --output=messages 'tag:test_thread_tag') test_expect_equal "$output" "" @@ -119,7 +119,7 @@ test_emacs '(notmuch-hello) (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-tag-inbox -test_begin_subtest "Pick of a single thread (from search)" +test_begin_subtest "Tree view of a single thread (from search)" test_emacs '(notmuch-hello) (goto-char (point-min)) (re-search-forward "inbox") @@ -131,7 +131,7 @@ test_emacs '(notmuch-hello) (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-single-thread -test_begin_subtest "Pick of a single thread (from show)" +test_begin_subtest "Tree view of a single thread (from show)" test_emacs '(notmuch-hello) (goto-char (point-min)) (re-search-forward "inbox") @@ -144,7 +144,7 @@ test_emacs '(notmuch-hello) (delete-other-windows)' test_expect_equal_file OUTPUT $EXPECTED/notmuch-pick-single-thread -test_begin_subtest "Message window of pick" +test_begin_subtest "Message window of tree view" test_emacs '(notmuch-hello) (goto-char (point-min)) (re-search-forward "inbox") -- 1.7.9.1