Separate Doctrine\UuidTupe into an external library

Closes #51
This commit is contained in:
Ben Ramsey
2015-06-21 18:05:49 -05:00
parent 2d45a33475
commit de02e532b2
5 changed files with 2 additions and 254 deletions
-14
View File
@@ -30,15 +30,6 @@ class TestCase extends \PHPUnit_Framework_TestCase
}
}
protected function skipIfNoDoctrineDbal()
{
if (!$this->hasDoctrineDbal()) {
$this->markTestSkipped(
'Skipping test that requires doctrine/dbal.'
);
}
}
protected function hasMoontoastMath()
{
return class_exists('Moontoast\\Math\\BigNumber');
@@ -48,9 +39,4 @@ class TestCase extends \PHPUnit_Framework_TestCase
{
return class_exists('Symfony\\Component\\Console\\Application');
}
protected function hasDoctrineDbal()
{
return class_exists('Doctrine\\DBAL\\Types\\Type');
}
}