We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f725dea commit 878955dCopy full SHA for 878955d
1 file changed
spec/Vivait/StringGeneratorBundle/Generator/SecureBytesGeneratorSpec.php
@@ -4,7 +4,6 @@
4
5
use PhpSpec\ObjectBehavior;
6
use Prophecy\Argument;
7
-use Symfony\Component\Security\Core\Util\SecureRandom;
8
9
class SecureBytesGeneratorSpec extends ObjectBehavior
10
{
@@ -13,12 +12,6 @@ function it_is_initializable()
13
12
$this->shouldHaveType('Vivait\StringGeneratorBundle\Generator\SecureBytesGenerator');
14
}
15
16
- function let()
17
- {
18
- $secureRandom = new SecureRandom();
19
- $this->beConstructedWith($secureRandom);
20
- }
21
-
22
function it_generates_random_string()
23
24
$this->setLength(10);
0 commit comments