You are here

PartialNamedSelectorTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/behat/mink/tests/Selector/PartialNamedSelectorTest.php

File

vendor/behat/mink/tests/Selector/PartialNamedSelectorTest.php
View source
<?php

namespace Behat\Mink\Tests\Selector;

use Behat\Mink\Selector\PartialNamedSelector;
class PartialNamedSelectorTest extends NamedSelectorTest {
  protected function getSelector() {
    return new PartialNamedSelector();
  }
  protected function allowPartialMatch() {
    return true;
  }

}

Classes