diff options
Diffstat (limited to 't')
-rw-r--r-- | t/03mediacfg.t | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/03mediacfg.t b/t/03mediacfg.t new file mode 100644 index 0000000..0c3f58a --- /dev/null +++ b/t/03mediacfg.t @@ -0,0 +1,9 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use Test::More tests => 2; + +use_ok('MDV::Distribconf::MediaCFG'); +is(MDV::Distribconf::MediaCFG::valid_param('foo', 'name', 'toto'), 0, + "Valid value return no error"); |