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