Aleksander Machniak
2013-04-28 d0f616c6e04560a2f6a90b39b3d1d4391b327c74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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);
    }
}