Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-driver / spec / Drupal / Driver / Exception / BootstrapExceptionSpec.php
1 <?php
2
3 namespace spec\Drupal\Driver\Exception;
4
5 use PhpSpec\ObjectBehavior;
6 use Prophecy\Argument;
7
8 class BootstrapExceptionSpec extends ObjectBehavior
9 {
10     function let()
11     {
12         $this->beConstructedWith('Failed to bootstrap!');
13     }
14
15     function it_is_initializable()
16     {
17         $this->shouldHaveType('Drupal\Driver\Exception\BootstrapException');
18     }
19 }