You are here

public function ArrayConfigTest::testMergableCheckboxValues in Little helpers 7.2

Test that arrays that look like checkbox values are not mergable.

File

tests/ArrayConfigTest.php, line 56

Class

ArrayConfigTest
Unit-tests for the array config helper class.

Namespace

Drupal\little_helpers

Code

public function testMergableCheckboxValues() {
  $this
    ->assertFalse(ArrayConfig::isMergable([
    'a' => 'a',
    'b' => 0,
  ]));
}