File: testcase.pm

package info (click to toggle)
libxs-parse-keyword-perl 0.48-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: ansic: 2,037; perl: 1,013; sh: 6; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 275 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package testcase;

use v5.14;
use warnings;

use lib "t/blib", "t/blib/arch";

use XS::Parse::Keyword;

sub import
{
   shift;
   require XSLoader;
   XSLoader::load( $_[0], $XS::Parse::Keyword::VERSION );
}

sub unimport
{
   die "testcase cannot be unimported";
}

0x55AA;