RedUNIT\Blackhole\Meta::testNoArrayMetaAccess PHP Method

testNoArrayMetaAccess() public method

You cant access meta data using the array accessors.
public testNoArrayMetaAccess ( ) : void
return void
    public function testNoArrayMetaAccess()
    {
        $bean = R::dispense('bean');
        $bean->setMeta('greet', 'hello');
        asrt(isset($bean['greet']), FALSE);
        asrt(isset($bean['__info']['greet']), FALSE);
        asrt(isset($bean['__info']), FALSE);
        asrt(isset($bean['meta']), FALSE);
        asrt(count($bean), 1);
    }