From: Daniel Ruoso Date: Mon, 14 Apr 2008 14:06:10 +0000 (+0000) Subject: Declares the new tests in the MANIFEST, remove useless warnings X-Git-Tag: v0.11008~322 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4157d61c6a79cf02c97846e84a925bd4ad838d7c;p=dbsrgits%2FSQL-Translator.git Declares the new tests in the MANIFEST, remove useless warnings --- diff --git a/MANIFEST b/MANIFEST index 72c18f3..fc8df6b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -136,10 +136,13 @@ t/46xml-to-pg.t t/47postgres-producer.t t/48xml-to-sqlite.t t/49xml-to-pg-samefield.t +t/52-oracle-options.t +t/53-oracle-delay-constraints.t t/data/access/gdpdm.ddl t/data/Excel/t.xls t/data/oracle/create.sql t/data/oracle/create2.sql +t/data/oracle/schema_with_options.yaml t/data/mysql/Apache-Session-MySQL.sql t/data/mysql/BGEP-RE-create.sql t/data/mysql/create.sql diff --git a/t/52-oracle-options.t b/t/52-oracle-options.t index d93de6e..c9ba5ef 100644 --- a/t/52-oracle-options.t +++ b/t/52-oracle-options.t @@ -28,7 +28,6 @@ my $sql_string = $sqlt->translate( filename => $yamlfile, ); -warn $sql_string; ok($sql_string, 'Translation successfull'); ok($sql_string =~ /TABLESPACE\s+DATA/, 'Table options'); ok($sql_string =~ /TABLESPACE\s+INDX/, 'Index options'); diff --git a/t/53-oracle-delay-constraints.t b/t/53-oracle-delay-constraints.t index a60fe20..974b401 100644 --- a/t/53-oracle-delay-constraints.t +++ b/t/53-oracle-delay-constraints.t @@ -29,6 +29,5 @@ my $sql_string = $sqlt->translate( filename => $yamlfile, ); -warn $sql_string; ok($sql_string, 'Translation successfull'); -ok($sql_string =~ /ADD PRIMARY KEY/, 'constraints delayed'); +ok($sql_string =~ /ADD CONSTRAINT pk_d_operator PRIMARY KEY/, 'constraints delayed');