preliminary hash ban testing

This commit is contained in:
Shish 2009-01-25 12:37:45 +00:00 committed by Shish
parent 68967b0fa2
commit 63a4ca2587

View File

@ -0,0 +1,19 @@
<?php
class ImageHashBanUnitTest extends UnitTestCase {
public function _broken_testUploadFailsWhenBanned() {
$ihb = new ImageHashBan();
$due = new DataUploadEvent();
try {
$ihb->receive_event($due);
$this->assertTrue(false); // shouldn't work
}
catch(DataUploadException $ex) {
$this->assertTrue(true); // should fail
}
catch(Exception $ex) {
$this->assertTrue(false); // but not with any other error
}
}
}
?>