mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 23:04:01 +01:00
20 lines
493 B
PHP
20 lines
493 B
PHP
<?php
|
|
|
|
class Selenium_Settings_Identities extends Selenium_Test
|
|
{
|
|
public function testIdentities()
|
|
{
|
|
$this->go('settings', 'identities');
|
|
|
|
// check task and action
|
|
$env = $this->get_env();
|
|
$this->assertEquals('settings', $env['task']);
|
|
$this->assertEquals('identities', $env['action']);
|
|
|
|
$objects = $this->get_objects();
|
|
|
|
// these objects should be there always
|
|
$this->assertContains('identitieslist', $objects);
|
|
}
|
|
}
|