You are here

public function BlazyManagerTest::providerIsCrop in Blazy 8

Provider for ::testIsCrop.

File

tests/src/Kernel/BlazyManagerTest.php, line 349

Class

BlazyManagerTest
Tests the Blazy manager methods.

Namespace

Drupal\Tests\blazy\Kernel

Code

public function providerIsCrop() {
  return [
    'Cropped image style' => [
      'blazy_crop',
      TRUE,
    ],
    'Non-cropped image style' => [
      'large',
      FALSE,
    ],
  ];
}