You are here

public function RoleSplitFilterTest::filterDeleteProvider in Config Role Split 8

File

src/Tests/RoleSplitFilterTest.php, line 206

Class

RoleSplitFilterTest
Class SplitFilterTest.

Namespace

Drupal\config_role_split\Tests

Code

public function filterDeleteProvider() {
  return [
    [
      [
        'test' => [
          'can test',
        ],
      ],
      'user.role.test',
      'split',
      TRUE,
      FALSE,
    ],
    [
      [
        'test' => [
          'can test',
        ],
      ],
      'user.role.test',
      'fork',
      FALSE,
      FALSE,
    ],
    [
      [
        'test' => [
          'can test',
        ],
      ],
      'user.role.test',
      'exclude',
      FALSE,
      FALSE,
    ],
    [
      [
        'test' => [
          'can test',
        ],
      ],
      'user.role.other',
      'split',
      TRUE,
      FALSE,
    ],
    [
      [
        'test' => [
          'can test',
        ],
      ],
      'user.role.other',
      'fork',
      TRUE,
      FALSE,
    ],
    [
      [
        'test' => [
          'can test',
        ],
      ],
      'user.role.other',
      'exclude',
      TRUE,
      FALSE,
    ],
  ];

  // @codingStandardsIgnoreEnd
}