File: 703-utils-get-base-name.t

package info (click to toggle)
libparse-dia-sql-perl 0.31-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 924 kB
  • sloc: perl: 3,865; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 866 bytes parent folder | download | duplicates (5)
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
27
28
29
30
#   $Id: 703-utils-get-base-name.t,v 1.1 2009/11/17 11:15:46 aff Exp $

use warnings;
use strict;

use Data::Dumper;
use Test::More;
use File::Spec::Functions;
use lib catdir qw ( blib lib );

plan tests => 9;

use lib q{lib};
use_ok ('Parse::Dia::SQL::Utils');

# Need to specify database for make_name to pass
my $utils = Parse::Dia::SQL::Utils->new( db => 'postgres' );
isa_ok($utils, 'Parse::Dia::SQL::Utils');

# make_name
is($utils->get_base_type('int2', 'postgres'),  'smallint');
is($utils->get_base_type('smallserial', 'postgres'),  'smallint');
is($utils->get_base_type('int4', 'postgres'),  'integer');
is($utils->get_base_type('serial', 'postgres'),  'integer');
is($utils->get_base_type('int8', 'postgres'),  'bigint');
is($utils->get_base_type('bigserial', 'postgres'),  'bigint');

is($utils->get_base_type('int2', 'mysql-myisam'),  'int2');

__END__