名前¶
Module::Install::TestBase - Module::Install での Test::Base サポート
概要¶
use inc::Module::Install;
name 'Foo';
all_from 'lib/Foo.pm';
use_test_base;
WriteAll;
説明¶
This module adds the use_test_base
directive to Module::Install.
このモジュールは Moduke::Install に use_test_base
ディレクティブを 追加します.
Now you can get full Test-Base support for you module with no external dependency on Test::Base.
これによって Test::Base への外部依存なしに Test-Base を完全に サポートできます.
Just add this line to your Makefile.PL:
Makefile.PL に次の行を追加するだけです:
use_test_base;
That's it. Really. Now Test::Base is bundled into your module, so that it is no longer any burden on the person installing your module.
その通り. 本当に. これだけで Test::Base があなたのモジュールに バンドルされるので, インストールする人の苦労を軽減してくれます.
著者¶
Ingy döt Net <[email protected]>
著作権¶
Copyright (c) 2006, 2008. Ingy döt Net.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
このプログラムはフリーソフトウェアです。あなたは Perl と同じ ライセンスの 元で再配布及び変更を行うことが出来ます.