mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
27 lines
537 B
PHP
27 lines
537 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @package sapphire
|
||
|
* @subpackage tests
|
||
|
*/
|
||
|
class OptionsetFieldTest extends SapphireTest {
|
||
|
function testSetDisabledItems() {
|
||
|
$f = new OptionsetField(
|
||
|
'Test',
|
||
|
false,
|
||
|
array(0 => 'Zero', 1 => 'One')
|
||
|
);
|
||
|
|
||
|
$f->setDisabledItems(array(0));
|
||
|
$p = new CSSContentParser($f->Field());
|
||
|
$item0 = $p->getBySelector('#Test_0');
|
||
|
$item1 = $p->getBySelector('#Test_1');
|
||
|
$this->assertEquals(
|
||
|
(string)$item0[0]['disabled'],
|
||
|
'disabled'
|
||
|
);
|
||
|
$this->assertEquals(
|
||
|
(string)$item1[0]['disabled'],
|
||
|
''
|
||
|
);
|
||
|
}
|
||
|
}
|