File: 01_use.t

package info (click to toggle)
libjson-rpc-perl 1.06-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 292 kB
  • sloc: perl: 1,095; makefile: 587
file content (14 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use Test::More;
use strict;
BEGIN { plan tests => 1 };

use CGI;
use JSON::RPC::Legacy::Client;
use JSON::RPC::Legacy::Server;

ok(1); # If we made it this far, we're ok.

END {
    warn "\nJSON::RPC::nLegacy::Server::CGI requires CGI.pm (>= 2.9.2)." if(CGI->VERSION < 2.92);
}