You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
PHTML
15 lines
349 B
PHTML
12 years ago
|
<?php
|
||
|
|
||
|
class Selenium_Settings_About extends Selenium_Test
|
||
|
{
|
||
|
public function testAbout()
|
||
|
{
|
||
|
$this->url(TESTS_URL . '/?_task=settings&_action=about');
|
||
|
|
||
|
// check task and action
|
||
|
$env = $this->get_env();
|
||
|
$this->assertEquals('settings', $env['task']);
|
||
|
$this->assertEquals('about', $env['action']);
|
||
|
}
|
||
|
}
|