removed test that does not test anything

This commit is contained in:
Fabien Potencier 2017-03-23 09:07:15 -07:00
parent e31d3461ea
commit 80af0838f5
4 changed files with 0 additions and 66 deletions

View File

@ -1,16 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array(
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
);

View File

@ -1,29 +0,0 @@
imports:
- { resource: ./../config/framework.yml }
doctrine:
dbal:
driver: pdo_sqlite
memory: true
charset: UTF8
orm:
entity_managers:
default:
auto_mapping: true
security:
providers:
camelCasedName:
entity:
class: Symfony\Component\Security\Core\User\User
firewalls:
default:
anonymous: ~
provider: camelCasedName
encoders:
Symfony\Component\Security\Core\User\User: plaintext

View File

@ -1,20 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
class CamelCasedProvidersCausesExceptionsTest extends WebTestCase
{
public function testBugfixExceptionThenCamelCasedProviderIsGiven()
{
$client = $this->createClient(array('test_case' => 'CamelCasedProviders', 'root_config' => 'config.yml'));
}
}

View File

@ -37,7 +37,6 @@
"symfony/yaml": "^2.0.5",
"symfony/expression-language": "~2.6",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/orm": "~2.4,>=2.4.5",
"twig/twig": "~1.28|~2.0",
"ircmaxell/password-compat": "~1.0"
},