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

testApiWrite_CallsPutOnModel_WithConfig() public method

    public function testApiWrite_CallsPutOnModel_WithConfig()
    {
        $path = 'path';
        $contents = 'contents';
        $this->expect('update', [$path, $contents]);
        $this->fs->write($path, $contents);
    }
FilesystemTest