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
PHP
15 lines
349 B
PHP
<?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']);
|
|
}
|
|
}
|