Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/*
|
|
|
4 |
* This file is part of the symfony package.
|
|
|
5 |
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
6 |
*
|
|
|
7 |
* For the full copyright and license information, please view the LICENSE
|
|
|
8 |
* file that was distributed with this source code.
|
|
|
9 |
*/
|
|
|
10 |
|
|
|
11 |
$app = 'frontend';
|
|
|
12 |
require_once(dirname(__FILE__).'/../../bootstrap/functional.php');
|
|
|
13 |
if (!is_link(sfConfig::get('sf_config_dir').'/doctrine/linked_schema.yml'))
|
|
|
14 |
{
|
|
|
15 |
return;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
$t = new lime_test(1);
|
|
|
19 |
|
|
|
20 |
$t->is(class_exists('ModelFromLinkedSchema'), true, 'models from symlinked schema files are built');
|