diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-06 16:42:38 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-06 16:42:38 +0200 |
commit | cf43cdc943cd403996ba6924031658b7bf2998e2 (patch) | |
tree | bed1d99a0bfa6999597b653256c6d98ae2df9968 /Tests/Core | |
parent | 374b2d638374842e7dddf7601c6605670e4070b3 (diff) | |
parent | 9675caa20dad59cd40e858ecafc239cf9aabe6b1 (diff) | |
download | symfony-security-cf43cdc943cd403996ba6924031658b7bf2998e2.zip symfony-security-cf43cdc943cd403996ba6924031658b7bf2998e2.tar.gz symfony-security-cf43cdc943cd403996ba6924031658b7bf2998e2.tar.bz2 |
minor #16145 [FrameworkBundle] Fix deps=low/high tests (nicolas-grekas)
This PR was merged into the 2.3 branch.
Discussion
----------
[FrameworkBundle] Fix deps=low/high tests
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | -
| License | MIT
| Doc PR | -
Commits
-------
26ca3dc [FrameworkBundle] Fix deps=low/high tests
Diffstat (limited to 'Tests/Core')
-rw-r--r-- | Tests/Core/SecurityContextTest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/Core/SecurityContextTest.php b/Tests/Core/SecurityContextTest.php index 124ebf9..6695889 100644 --- a/Tests/Core/SecurityContextTest.php +++ b/Tests/Core/SecurityContextTest.php @@ -89,4 +89,9 @@ class SecurityContextTest extends \PHPUnit_Framework_TestCase $context->setToken($token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')); $this->assertSame($token, $context->getToken()); } + + public function testTranslationsAreNotInCore() + { + $this->assertFalse(file_exists(__DIR__.'/../../Core/Resources/translations/')); + } } |