1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-21 09:52:26 +01:00

[ticket/13904] Test move file on existing error

PHPBB3-13904
This commit is contained in:
Marc Alexander 2015-07-17 09:29:09 +02:00
parent 46e3d82196
commit 7ba0fe47a8

View File

@ -395,6 +395,14 @@ class phpbb_filespec_test extends phpbb_test_case
$this->phpbb_root_path = $phpbb_root_path;
}
public function test_move_file_error()
{
$filespec = $this->get_filespec();
$this->assertFalse($filespec->move_file('foobar'));
$filespec->error[] = 'foo';
$this->assertFalse($filespec->move_file('foo'));
}
/**
* @dataProvider clean_filename_variables
*/