This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/tips/test.php
2009-09-27 14:00:29 +01:00

11 lines
228 B
PHP

<?php
class TipsTest extends SCoreWebTestCase {
function testTips() {
$this->log_in_as_admin();
$this->get_page("tips/list");
$this->assert_title("Tips List");
$this->click("Save Settings");
$this->log_out();
}
}
?>