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