Add new test for basic sanity
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / 02view_def.t
CommitLineData
487f4489 1use strict;
2use warnings;
3use lib 't/lib';
8b229aa6 4use File::Temp;
487f4489 5use Test::More qw(no_plan);
6use Test::Exception;
8f839b1c 7use Devel::Dwarn;
487f4489 8
8f839b1c 9BEGIN {
10 use_ok 'MTITest';
ebcd7e95 11 $ENV{DBIC_TRACE} = 0;
8f839b1c 12}
487f4489 13
32098147 14my ( $dsn, $user, $pass )
15 = @ENV{ map {"DBICTEST_PG_${_}"} qw/DSN USER PASS/ };
16
17plan skip_all => <<'EOM' unless $dsn && $user;
18Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test
19( NOTE: This test drops and creates some tables.')
20EOM
21
487f4489 22dies_ok { MTITest->source('Foo')->view_definition }
8f839b1c 23"Can't generate view def without connected schema";
487f4489 24
32098147 25my $schema = MTITest->connect( $dsn, $user, $pass );
c8e085ba 26
8f839b1c 27my $dir = "t/sql"; # tempdir(CLEANUP => 0);
28
32098147 29$schema->storage->dbh->{Warn} = 0;
30lives_ok { $schema->create_ddl_dir( ['PostgreSQL'], 0.1, $dir ) }
31"It's OK to create_ddl_dir";
32lives_ok {
33 $schema->deploy(
34 { add_drop_table => 1, add_drop_view => 1, } );
35}
36"It's also OK to deploy the schema";