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
547 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");
2009-08-19 00:28:48 +00:00
$this->set_field("_config_news_text", "kittens");
2009-07-16 19:21:49 +00:00
$this->click("Save Settings");
$this->get_page("post/list");
2009-08-19 00:28:48 +00:00
$this->assert_text("Note");
$this->assert_text("kittens");
2009-07-16 19:21:49 +00:00
$this->get_page("setup");
2009-08-19 00:28:48 +00:00
$this->set_field("_config_news_text", "");
2009-07-16 19:21:49 +00:00
$this->click("Save Settings");
$this->get_page("post/list");
2009-08-19 00:28:48 +00:00
$this->assert_no_text("Note");
$this->assert_no_text("kittens");
2009-07-16 19:21:49 +00:00
$this->log_out();
}
}
?>