File: interface.t

package info (click to toggle)
libwebservice-ils-perl 0.18-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 348 kB
  • sloc: perl: 2,645; makefile: 2; sh: 2
file content (14 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use Modern::Perl;

use Test::More tests => 3;

use_ok('WebService::ILS');

my %params = (
    client_id => "DUMMY",
    client_secret => "DUMMY",
);
ok( WebService::ILS->new(%params), "WebService::ILS->new(name => val...)");
ok( WebService::ILS->new(\%params), "WebService::ILS->new({})");