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/news/test.php
2009-07-16 20:22:00 +01:00

25 lines
541 B
PHP

<?php
class NewsTest extends ShimmieWebTestCase {
function testNews() {
$this->log_in_as_admin();
$this->get_page("setup");
$this->setField("_config_news_text", "kittens");
$this->click("Save Settings");
$this->get_page("post/list");
$this->assertText("Note");
$this->assertText("kittens");
$this->get_page("setup");
$this->setField("_config_news_text", "");
$this->click("Save Settings");
$this->get_page("post/list");
$this->assertNoText("Note");
$this->assertNoText("kittens");
$this->log_out();
}
}
?>