blotter test
This commit is contained in:
parent
4313375e3b
commit
86f80f2b9c
1 changed files with 21 additions and 0 deletions
21
contrib/blotter/test.php
Normal file
21
contrib/blotter/test.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
class BlotterTest extends SCoreWebTestCase {
|
||||
function testView() {
|
||||
$this->log_in_as_admin();
|
||||
$this->assert_text("Blotter Editor");
|
||||
$this->click("Blotter Editor");
|
||||
$this->log_out();
|
||||
}
|
||||
|
||||
function testAdd() {
|
||||
$this->log_in_as_admin();
|
||||
$this->get_page("blotter/editor");
|
||||
$this->set_field("entry_text", "blotter testing");
|
||||
$this->click("Add");
|
||||
$this->assert_text("blotter testing");
|
||||
$this->clock("Remove");
|
||||
$this->assert_no_text("blotter testing");
|
||||
$this->log_out();
|
||||
}
|
||||
}
|
||||
?>
|
Reference in a new issue