File: import_version.t

package info (click to toggle)
libclass-makemethods-perl 1.01-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,944 kB
  • sloc: perl: 10,495; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 150 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use Test;
BEGIN { plan tests => 2 }

eval "use Class::MakeMethods 1.0;";
ok( ! $@ );

eval "use Class::MakeMethods 2000;";
ok( $@ );