summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-02-18 12:06:32 -0600
committerJesse Luehrs <doy@tozt.net>2010-02-18 12:06:32 -0600
commitb3fa49c38792421b72d2ebb348ca6d48a5fd670a (patch)
treedae6ba5149a1cb2a11978e0f566835dbcd08c2b1 /t
parentad2ed3e6b53d86e46a789a8ac1833c0349d3c1ba (diff)
downloadlocale-pofilemanager-b3fa49c38792421b72d2ebb348ca6d48a5fd670a.tar.gz
locale-pofilemanager-b3fa49c38792421b72d2ebb348ca6d48a5fd670a.zip
initial implementation
Diffstat (limited to 't')
-rw-r--r--t/000-load.t11
1 files changed, 7 insertions, 4 deletions
diff --git a/t/000-load.t b/t/000-load.t
index 881e304..c530ad0 100644
--- a/t/000-load.t
+++ b/t/000-load.t
@@ -1,8 +1,11 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 1;
+use Test::More;
-package Foo;
-::use_ok('Locale::POFileManager')
- or ::BAIL_OUT("couldn't load Locale::POFileManager");
+use_ok('Locale::POFileManager')
+ or BAIL_OUT("couldn't load Locale::POFileManager");
+use_ok('Locale::POFileManager::File')
+ or BAIL_OUT("couldn't load Locale::POFileManager::File");
+
+done_testing;