mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 23:04:01 +01:00
18 lines
377 B
PHP
18 lines
377 B
PHP
<?php
|
|
|
|
class Selenium_Settings_Settings extends Selenium_Test
|
|
{
|
|
public function testSettings()
|
|
{
|
|
$this->go('settings');
|
|
|
|
// task should be set to 'settings'
|
|
$env = $this->get_env();
|
|
$this->assertEquals('settings', $env['task']);
|
|
|
|
$objects = $this->get_objects();
|
|
|
|
$this->assertContains('sectionslist', $objects);
|
|
}
|
|
}
|