summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2013-05-08 02:49:35 +0200
committerGuillem Jover <guillem@debian.org>2013-05-08 05:03:21 +0200
commit57b46c7b30f10cb273fc8d50269d6e84ff9a0a95 (patch)
tree7b99e79260a18805707acbc299a1fa0a08b1285b
parent17ae5451263121467ed9b0a45dfddc1c4336a930 (diff)
downloaddpkg-57b46c7b30f10cb273fc8d50269d6e84ff9a0a95.tar.gz
scripts/t: Move constant tests plan to ‘use Test::More’ time
-rw-r--r--scripts/t/600_Dpkg_Changelog.t15
-rw-r--r--scripts/t/910_merge_changelogs.t5
2 files changed, 4 insertions, 16 deletions
diff --git a/scripts/t/600_Dpkg_Changelog.t b/scripts/t/600_Dpkg_Changelog.t
index a0bee9a17..304a43e9c 100644
--- a/scripts/t/600_Dpkg_Changelog.t
+++ b/scripts/t/600_Dpkg_Changelog.t
@@ -16,23 +16,12 @@
use strict;
use warnings;
+use Test::More tests => 84;
+
use File::Basename;
use Dpkg::File;
BEGIN {
- my $no_examples = 4;
- my $no_err_examples = 1;
- my $no_tests = $no_examples * 5
- + $no_err_examples * 2
- + 26 # countme
- + 13 # fields
- + 1 # regressions
- + 22;
-
- require Test::More;
- import Test::More tests => $no_tests;
-}
-BEGIN {
use_ok('Dpkg::Changelog');
use_ok('Dpkg::Changelog::Debian');
use_ok('Dpkg::Vendor', qw(get_current_vendor));
diff --git a/scripts/t/910_merge_changelogs.t b/scripts/t/910_merge_changelogs.t
index 662405db2..932ae4ec2 100644
--- a/scripts/t/910_merge_changelogs.t
+++ b/scripts/t/910_merge_changelogs.t
@@ -13,17 +13,16 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+use Test::More tests => 3;
+
use Dpkg::IPC;
use File::Spec;
-use Test::More;
use File::Compare;
use File::Temp qw(tempfile);
use strict;
use warnings;
-plan tests => 3;
-
my $srcdir = $ENV{srcdir} || '.';
my $datadir = "$srcdir/t/910_merge_changelogs";