File: rs-imports.t

package info (click to toggle)
libdbix-class-candy-perl 0.005003-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 268 kB
  • sloc: perl: 654; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use Test::More;
use MRO::Compat;

use lib 't/lib';


use IRC::Schema;

is(mro::get_mro('IRC::Schema::ResultSet::User'), 'c3', 'mro');
ok(IRC::Schema::ResultSet::User->isa('IRC::Schema::ResultSet'), 'base');

ok(IRC::Schema::ResultSet::Channel->isa('IRC::Schema::ResultSet'), 'base defaulted');

done_testing;