Lazer\Classes\Helpers\FileTest::testRemoveFileNotExists PHP Method

testRemoveFileNotExists() public method

    public function testRemoveFileNotExists()
    {
        $object = $this->object->table('ghost');
        $object->setType('data');
        $this->assertFalse($this->root->hasChild('ghost.data.json'));
        $object->remove();
    }