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.
20 lines
493 B
PHTML
20 lines
493 B
PHTML
12 years ago
|
<?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);
|
||
|
}
|
||
|
}
|