RedUNIT\Base\Bean::testCANTDeleteXOwnListWithFalse PHP Method

testCANTDeleteXOwnListWithFalse() public method

You cannot delete an x-own-list by assigning FALSE.
    public function testCANTDeleteXOwnListWithFalse()
    {
        $book = $this->_createBook();
        asrt(isset($book->xownPage), FALSE);
        //not loaded yet, lazy loading
        asrt(count($book->xownPage), 2);
        //when loaded has 2
        $book->xownPage = FALSE;
        //remove all
        R::store($book);
        asrt(isset($book->xownPage), TRUE);
        //not loaded yet, lazy loading
        asrt($book->xownPage, '0');
    }