1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 12:05:37 +00:00

14 lines
300 B
PHP
Raw Normal View History

<?php
/**
* @package framework
* @subpackage tests
*/
class LabelFieldTest extends SapphireTest {
public function testFieldHasNoNameAttribute() {
$field = new LabelField('MyName', 'MyTitle');
$this->assertEquals($field->Field(), '<label id="MyName" class="readonly">MyTitle</label>');
}
}