summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Grekas <nicolas.grekas@gmail.com>2015-10-06 15:19:40 +0200
committerNicolas Grekas <nicolas.grekas@gmail.com>2015-10-06 16:14:42 +0200
commit9675caa20dad59cd40e858ecafc239cf9aabe6b1 (patch)
tree9ce4fed07df3ccfcdd9ea779a54439ecef2c8740
parentb4534d808d7bd8f5f65959cb2187da072b35a9da (diff)
downloadsymfony-security-9675caa20dad59cd40e858ecafc239cf9aabe6b1.zip
symfony-security-9675caa20dad59cd40e858ecafc239cf9aabe6b1.tar.gz
symfony-security-9675caa20dad59cd40e858ecafc239cf9aabe6b1.tar.bz2
[FrameworkBundle] Fix deps=low/high tests
-rw-r--r--Tests/Core/SecurityContextTest.php5
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/'));
+ }
}