1
0
mirror of synced 2025-01-18 06:21:40 +03:00

Fixed tests on Windows

This commit is contained in:
Martin Hasoň 2012-03-29 13:26:06 +02:00
parent 290f8a79e4
commit f3a9b1efc0

View File

@ -30,9 +30,9 @@ class AutoloaderTest extends OrmTestCase
static public function dataResolveFile() static public function dataResolveFile()
{ {
return array( return array(
array('/tmp', 'MyProxy', 'MyProxy\__CG__\RealClass', '/tmp/__CG__RealClass.php'), array('/tmp', 'MyProxy', 'MyProxy\__CG__\RealClass', '/tmp' . DIRECTORY_SEPARATOR . '__CG__RealClass.php'),
array('/tmp', 'MyProxy\Subdir', 'MyProxy\Subdir\__CG__\RealClass', '/tmp/__CG__RealClass.php'), array('/tmp', 'MyProxy\Subdir', 'MyProxy\Subdir\__CG__\RealClass', '/tmp' . DIRECTORY_SEPARATOR . '__CG__RealClass.php'),
array('/tmp', 'MyProxy', 'MyProxy\__CG__\Other\RealClass', '/tmp/__CG__OtherRealClass.php'), array('/tmp', 'MyProxy', 'MyProxy\__CG__\Other\RealClass', '/tmp' . DIRECTORY_SEPARATOR . '__CG__OtherRealClass.php'),
); );
} }