|
Lines 2-8
Link Here
|
| 2 |
|
2 |
|
| 3 |
use Modern::Perl; |
3 |
use Modern::Perl; |
| 4 |
|
4 |
|
| 5 |
use Test::More tests => 32; |
5 |
use Test::More tests => 34; |
| 6 |
use CGI; |
6 |
use CGI; |
| 7 |
use File::Basename; |
7 |
use File::Basename; |
| 8 |
use File::Spec; |
8 |
use File::Spec; |
|
Lines 45-50
ok( $plugin->can('to_marc'), 'Test plugin can to_marc' );
Link Here
|
| 45 |
ok( $plugin->can('opac_online_payment'), 'Test plugin can opac_online_payment' ); |
45 |
ok( $plugin->can('opac_online_payment'), 'Test plugin can opac_online_payment' ); |
| 46 |
ok( $plugin->can('opac_online_payment_begin'), 'Test plugin can opac_online_payment_begin' ); |
46 |
ok( $plugin->can('opac_online_payment_begin'), 'Test plugin can opac_online_payment_begin' ); |
| 47 |
ok( $plugin->can('opac_online_payment_end'), 'Test plugin can opac_online_payment_end' ); |
47 |
ok( $plugin->can('opac_online_payment_end'), 'Test plugin can opac_online_payment_end' ); |
|
|
48 |
ok( $plugin->can('opac_head'), 'Test plugin can opac_head' ); |
| 49 |
ok( $plugin->can('opac_js'), 'Test plugin can opac_js' ); |
| 48 |
ok( $plugin->can('configure'), 'Test plugin can configure' ); |
50 |
ok( $plugin->can('configure'), 'Test plugin can configure' ); |
| 49 |
ok( $plugin->can('install'), 'Test plugin can install' ); |
51 |
ok( $plugin->can('install'), 'Test plugin can install' ); |
| 50 |
ok( $plugin->can('uninstall'), 'Test plugin can install' ); |
52 |
ok( $plugin->can('uninstall'), 'Test plugin can install' ); |
| 51 |
- |
|
|