Commit | Line | Data |
4068e05f |
1 | use strict; |
2 | use warnings; |
3 | |
4 | use Test::More; |
5 | |
6 | use lib qw(t/lib); |
7 | use DBICTest; |
8 | |
43d2a76e |
9 | BEGIN { |
10 | require DBIx::Class; |
11 | plan skip_all => |
12 | 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy') |
13 | unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy') |
14 | } |
15 | |
4068e05f |
16 | use File::Spec; |
076be7c4 |
17 | use Path::Class qw/dir/; |
18 | use File::Path qw/make_path remove_tree/; |
4068e05f |
19 | my $schema = DBICTest->init_schema(); |
20 | |
076be7c4 |
21 | my $var = dir (qw| t var create_ddl_dir |); |
4068e05f |
22 | -d $var |
076be7c4 |
23 | or make_path( "$var" ) |
24 | or die "can't create $var: $!"; |
4068e05f |
25 | |
076be7c4 |
26 | my $test_dir_1 = $var->subdir ('test1', 'foo', 'bar' ); |
27 | remove_tree( "$test_dir_1" ) if -d $test_dir_1; |
4068e05f |
28 | $schema->create_ddl_dir( undef, undef, $test_dir_1 ); |
29 | |
076be7c4 |
30 | ok( -d $test_dir_1, 'create_ddl_dir did a make_path on its target dir' ); |
4068e05f |
31 | ok( scalar( glob $test_dir_1.'/*.sql' ), 'there are sql files in there' ); |
32 | |
33 | TODO: { |
34 | local $TODO = 'we should probably add some tests here for actual deployability of the DDL?'; |
35 | ok( 0 ); |
36 | } |
37 | |
38 | done_testing; |