mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
275 B
PHP
14 lines
275 B
PHP
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage tests
|
|
*/
|
|
|
|
class LabelFieldTest extends SapphireTest {
|
|
|
|
function testFieldHasNoNameAttribute() {
|
|
$field = new LabelField('MyName', 'MyTitle');
|
|
$this->assertEquals($field->Field(), '<label id="MyName">MyTitle</label>');
|
|
}
|
|
}
|