From: Justin Hunter Date: Tue, 28 Jun 2011 05:03:03 +0000 (-0400) Subject: added two tables, so up the number expected X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9b0e2cdbf8f02bf4b331648cad547189d40b1377;hp=0510f676b5d5c46a63fd404847f84ab98c68d48c;p=dbsrgits%2FSQL-Translator-2.0-ish.git added two tables, so up the number expected --- diff --git a/t/02mysql-parser.t b/t/02mysql-parser.t index 79f5835..ab8711c 100644 --- a/t/02mysql-parser.t +++ b/t/02mysql-parser.t @@ -262,7 +262,7 @@ use SQL::Translator::Constants qw(:sqlt_types :sqlt_constants); my $schema = $tr->schema; is( $schema->is_valid, 1, 'Schema is valid' ); my @tables = $schema->get_tables; - is( scalar @tables, 2, 'Right number of tables (2)' ); + is( scalar @tables, 4, 'Right number of tables (4)' ); my $t1 = shift @tables; is( $t1->name, 'orders', 'Found "orders" table' );