From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id BFFEC1F5B1; Wed, 29 Jul 2020 08:43:09 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: Eric Wong Subject: [PATCH 1/3] t/imap_searchqp: fix test dependencies Date: Wed, 29 Jul 2020 08:43:07 +0000 Message-Id: <20200729084309.15772-2-e@yhbt.net> In-Reply-To: <20200729084309.15772-1-e@yhbt.net> References: <20200729084309.15772-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Eric Wong The query parser test pulls in all of the IMAP stuff, so it has the same dependencies. --- t/imap_searchqp.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/imap_searchqp.t b/t/imap_searchqp.t index d73600b3..d62f314a 100644 --- a/t/imap_searchqp.t +++ b/t/imap_searchqp.t @@ -5,7 +5,8 @@ use strict; use Test::More; use Time::Local qw(timegm); use PublicInbox::TestCommon; -require_mods(qw(Parse::RecDescent)); +require_mods(qw(DBD::SQLite Email::Address::XS||Mail::Address + Parse::RecDescent)); use_ok 'PublicInbox::IMAPsearchqp'; use_ok 'PublicInbox::IMAP';