table of contents
Test::Debian(3pm) | User Contributed Perl Documentation | Test::Debian(3pm) |
NAME¶
Test::Debian - some tests for debian systemSYNOPSIS¶
use Test::More; use Test::Debian; ok($value, 'test name'); system_is_debian; package_is_installed 'dpkg'; package_is_installed 'dpkg', 'dpkg is installed'; package_isnt_installed 'kde-base';
DESCRIPTION¶
The module provides some perl tests for debian system:system_is_debian([ $test_name ])¶
Passes if current OS is debianpackage_is_installed($pkg_variant [, $test_name ])¶
Passes if package is installedpackage_is_installed understands the following syntax:
package1 | package2 package1 (< 1.23) | package2 (> 1.3)
package_isnt_installed($pkg_name [, $test_name ])¶
Passes if package isn't installedAUTHOR¶
Dmitry E. Oboukhov, <unera@debian.org<gt>COPYRIGHT AND LICENSE¶
Copyright (C) 2012 by Dmitry E. OboukhovThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
2016-10-18 | perl v5.24.1 |