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