diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-02-26 16:16:51 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-02-26 16:16:51 +0000 |
commit | 57bb09a84636453e9251d352ff7d123340d9a77c (patch) | |
tree | afe005d6d1782642be813395a9022b87b99974a6 /t | |
parent | 1e56d4d23b16c9ab51315b9e492f8ee0c57cad90 (diff) | |
download | isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar.gz isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar.bz2 isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar.xz isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.zip |
Move Isocheck lib under MDK namespace, reorganize code in consequence.
Diffstat (limited to 't')
-rw-r--r-- | t/00_load.t | 6 | ||||
-rw-r--r-- | t/parse_image_file_name.t | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/t/00_load.t b/t/00_load.t index 4a923e4..a0c0900 100644 --- a/t/00_load.t +++ b/t/00_load.t @@ -3,8 +3,8 @@ use Test::More tests => 2; BEGIN { -use_ok( 'Isocheck' ); -require_ok('Isocheck'); +use_ok('MDK::ISOcheck'); +require_ok('MDK::ISOcheck'); } -diag( "Testing Isocheck $Isocheck::VERSION" );
\ No newline at end of file +diag("Testing MDK::ISOcheck $MDK::ISOcheck::VERSION");
\ No newline at end of file diff --git a/t/parse_image_file_name.t b/t/parse_image_file_name.t index 4243514..0d8f34f 100644 --- a/t/parse_image_file_name.t +++ b/t/parse_image_file_name.t @@ -1,6 +1,6 @@ use Test::Most; -use Isocheck; +use MDK::ISOcheck; bail_on_fail; |