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

12 lines
228 B
PHP
Raw Normal View History

2009-09-27 13:00:29 +00:00
<?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();
}
}
?>