diff --git a/tests/Unit/Traits/Configuration/ConfigurableAreaConfigurationTest.php b/tests/Unit/Traits/Configuration/ConfigurableAreaConfigurationTest.php new file mode 100644 index 000000000..1be72604e --- /dev/null +++ b/tests/Unit/Traits/Configuration/ConfigurableAreaConfigurationTest.php @@ -0,0 +1,17 @@ +assertNull($this->basicTable->getConfigurableAreaFor('before-tools')); + + $this->basicTable->setConfigurableArea('before-tools', 'path.to.my.view'); + + $this->assertSame('path.to.my.view', $this->basicTable->getConfigurableAreaFor('before-tools')); + } +}