2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-05-28 17:59:38 +01:00
|
|
|
class PoolsTest extends ShimmiePHPUnitTestCase
|
|
|
|
{
|
2020-01-28 21:19:59 +00:00
|
|
|
public function testAnon() {
|
2019-05-28 17:59:38 +01:00
|
|
|
$this->get_page('pool/list');
|
|
|
|
$this->assert_title("Pools");
|
2009-11-15 06:23:42 +00:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
$this->get_page('pool/new');
|
|
|
|
$this->assert_title("Error");
|
|
|
|
}
|
2009-11-15 05:34:30 +00:00
|
|
|
}
|