You are here

public function BasicPathTest::testStarPattern in AmazonS3 7.2

@covers Drupal\amazons3\Matchable\BasicPath::__construct

File

tests/Matchable/BasicPathTest.php, line 47

Class

BasicPathTest
@class BasicPathTest @package Drupal\amazons3Test\Matchable

Namespace

Drupal\amazons3Test\Matchable

Code

public function testStarPattern() {
  $path = new BasicPath('*');
  $this
    ->assertSame($path, $path
    ->match('foo'));
}