File: basic.t

package info (click to toggle)
libkiokux-model-perl 0.02-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 80 kB
  • sloc: perl: 89; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/perl

use strict;
use warnings;

use Test::More 'no_plan';

use ok 'KiokuX::Model';

my $m = KiokuX::Model->connect("hash");

isa_ok( $m, "KiokuX::Model" );

is( $m->dsn, "hash" );

can_ok( $m, qw(
	lookup

	store
	update
	insert

	clear_live_objects
) );

isa_ok( $m->directory, "KiokuDB" );