Some test hackage
[dbsrgits/DBIx-Class.git] / t / run / 12pg.tl
1 sub run_tests {
2 my $schema = shift;
3
4 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
5
6 #warn "$dsn $user $pass";
7
8 plan skip_all, 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
9   . ' (note: creates and drops a table named artist!)' unless ($dsn && $user);
10
11 plan tests => 2;
12
13 DBICTest::Schema->compose_connection('PgTest' => $dsn, $user, $pass);
14
15 my $dbh = PgTest::Artist->storage->dbh;
16
17 $dbh->do("CREATE TABLE artist (artistid serial PRIMARY KEY, name VARCHAR(255));");
18
19 PgTest::Artist->load_components('PK::Auto::Pg');
20
21 my $new = PgTest::Artist->create({ name => 'foo' });
22
23 is($new->artistid, 1, "Auto-PK worked");
24
25 $new = PgTest::Artist->create({ name => 'bar' });
26
27 is($new->artistid, 2, "Auto-PK worked");
28
29 $dbh->do("DROP TABLE artist;");
30
31 }
32
33 1;