ultimatepos/tests/Unit/HoldingConfigTest.php

14 lines
260 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
class HoldingConfigTest extends TestCase
{
public function test_holding_context_feature_flag_is_defined(): void
{
$this->assertNotNull(config('constants.enable_holding_context_rbac'));
}
}