Skip to content

Commit

Permalink
Add missing tests for mysql.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 31, 2013
1 parent 424e147 commit 7bc185d
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -37,6 +37,7 @@ public function setUp() {
$config = Configure::read('Datasource.test');
$this->skipIf(strpos($config['datasource'], 'Mysql') === false, 'Not using Mysql for test config');
}

/**
* Test connecting to Mysql with default configuration
*
Expand Down Expand Up @@ -161,6 +162,10 @@ public static function columnProvider() {
'TINYINT(2)',
['integer', 2]
],
[
'INTEGER(11)',
['integer', 11]
],
[
'BIGINT',
['biginteger', null]
Expand Down

0 comments on commit 7bc185d

Please sign in to comment.