Esempio n. 1
0
	public function testPutContents() {
		// Remote files don't support writing :)
		$contents = 'Some Example Content';

		$file1 = new \Core\Filestore\Backends\FileRemote($this->_testfile);

		// These throw exceptions
		$this->setExpectedException('Exception');
		$this->assertFalse($file1->putContents($contents));
	}