You are here

public function ArrayConfigTest::testMergableAssociativaArray in Little helpers 7.2

Test simple associatve arrays are mergable.

File

tests/ArrayConfigTest.php, line 49

Class

ArrayConfigTest
Unit-tests for the array config helper class.

Namespace

Drupal\little_helpers

Code

public function testMergableAssociativaArray() {
  $this
    ->assertTrue(ArrayConfig::isMergable([
    'foo' => 'bar',
  ]));
}