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_helpersCode
public function testMergableCheckboxValues() {
$this
->assertFalse(ArrayConfig::isMergable([
'a' => 'a',
'b' => 0,
]));
}