1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Perl dependencies for CI tests. -*- perl -*-
#
# This file is used by cpanm to install dependencies used by the remctl test
# suite.
#
# Copyright 2016, 2018-2020, 2022 Russ Allbery <eagle@eyrie.org>
#
# SPDX-License-Identifier: MIT
on 'test' => sub {
requires 'Module::Build';
suggests 'Devel::Cover';
suggests 'Perl::Critic::Community';
suggests 'Test::MinimumVersion';
suggests 'Test::Perl::Critic';
suggests 'Test::Pod';
suggests 'Test::Pod::Coverage';
suggests 'Test::Spelling';
suggests 'Test::Strict';
suggests 'Test::Synopsis';
}
|