2009-07-20 06:51:36 +01:00
|
|
|
<?php
|
2015-08-09 12:14:28 +01:00
|
|
|
class RegenThumbTest {
|
2009-07-20 06:51:36 +01:00
|
|
|
function testRegenThumb() {
|
|
|
|
$this->log_in_as_admin();
|
2015-08-09 12:14:28 +01:00
|
|
|
$image_id = $this->post_image("tests/pbx_screenshot.jpg", "pbx computer screenshot");
|
2012-03-09 22:08:55 +00:00
|
|
|
$this->get_page("post/view/$image_id");
|
2009-07-20 06:51:36 +01:00
|
|
|
$this->click("Regenerate");
|
2009-08-19 01:28:48 +01:00
|
|
|
$this->assert_title("Thumbnail Regenerated");
|
2009-07-20 06:51:36 +01:00
|
|
|
$this->delete_image($image_id);
|
|
|
|
$this->log_out();
|
|
|
|
|
|
|
|
# FIXME: test that the thumb's modified time has been updated
|
|
|
|
}
|
|
|
|
}
|
2014-04-25 22:54:51 -04:00
|
|
|
|