Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / spec / Drupal / DrupalExtension / ServiceContainer / DrupalExtensionSpec.php
1 <?php
2
3 namespace spec\Drupal\DrupalExtension\ServiceContainer;
4
5 use PhpSpec\ObjectBehavior;
6 use Prophecy\Argument;
7
8 class DrupalExtensionSpec extends ObjectBehavior
9 {
10     function it_is_a_testwork_extension()
11     {
12         $this->shouldHaveType('Behat\Testwork\ServiceContainer\Extension');
13     }
14
15     function it_is_named_drupal()
16     {
17         $this->getConfigKey()->shouldReturn('drupal');
18     }
19 }