Kraken\_Unit\Filesystem\FilesystemTest::testApiRemoveFile_CallsDeleteOnModel PHP Method

testApiRemoveFile_CallsDeleteOnModel() public method

    public function testApiRemoveFile_CallsDeleteOnModel()
    {
        $path = 'path';
        $this->expect('delete', [$path]);
        $this->fs->removeFile($path);
    }
FilesystemTest