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

26 lines
539 B
PHP
Raw Normal View History

2009-07-16 19:21:49 +00:00
<?php
class NewsTest extends SCoreWebTestCase {
2009-07-16 19:21:49 +00:00
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();
}
}
?>