You are here

public function CacheTagFormatterTest::tagTestCases in Akamai 8.3

Provides tag testcase data.

File

tests/src/Unit/Helper/CacheTagFormatterTest.php, line 28

Class

CacheTagFormatterTest
CacheTagFormatter tests.

Namespace

Drupal\Tests\akamai\Unit\Helper

Code

public function tagTestCases() {
  return [
    [
      1,
      '1',
    ],
    [
      'node:1234',
      'node_1234',
    ],
    [
      'node 1234',
      'node_1234',
    ],
  ];
}