diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-02 23:16:49 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-02 23:19:43 +0100 |
commit | acda767722286c4e35b3917d1812e590ec852b26 (patch) | |
tree | af658625c38b85c65011272dbcf6a8df44c88587 | |
parent | ee5b1e28a271faafed2e29233e7baf2f77a77f94 (diff) |
Testsuite: started t/ to add tests for the testsuite
-rw-r--r-- | test/t/00-basic.t | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/t/00-basic.t b/test/t/00-basic.t new file mode 100644 index 000000000..df7eab4de --- /dev/null +++ b/test/t/00-basic.t @@ -0,0 +1,19 @@ +use Test::More; +use lib 'lib'; +use_ok 'Exim::Runtest'; + +can_ok 'Exim::Runtest', qw(mailgroup); + +my $group = getgrgid $(; +ok $group => 'got a group name'; +diag "use group $group"; + +is Exim::Runtest::mailgroup($group), $group => 'group names match'; +ok $group = Exim::Runtest::mailgroup('non existing group') => 'cope with unknown group'; +diag "got random group: $group"; + +ok getgrnam($group) => 'got an existing group'; + + + +done_testing; |