File: 00-deploy.t

package info (click to toggle)
libtangram-perl 2.10-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,184 kB
  • ctags: 702
  • sloc: perl: 9,665; makefile: 9
file content (36 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (6)
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
31
32
33
34
35
36
#!/usr/bin/perl -w

use strict;
use lib "t";
use TestNeeds qw(Test::More Set::Object);

use Test::More tests => 2;
use lib "t/springfield";

BEGIN {
    use_ok "Springfield";
};

local $/;

SKIP:
{
    my $dbh = DBI->connect( $Springfield::cs,
			    $Springfield::user,
			    $Springfield::passwd )
	or skip "could not connect to database", 1;

    do {
	local $dbh->{PrintError};
	local $dbh->{RaiseError};
	$Springfield::dialect->retreat($Springfield::schema, $dbh);
    };

    $dbh->{RaiseError} = 1;

    $Springfield::dialect->deploy($Springfield::schema, $dbh);

    pass("deploy completed without raising errors");

    $dbh->disconnect;
}