mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
16 lines
447 B
PHP
16 lines
447 B
PHP
<?php
|
|
|
|
class EditableRadioFieldTest extends SapphireTest
|
|
{
|
|
protected static $fixture_file = 'EditableFormFieldTest.yml';
|
|
|
|
/**
|
|
* Tests that this element is rendered with a custom template
|
|
*/
|
|
public function testRenderedWithCustomTemplate()
|
|
{
|
|
$radio = $this->objFromFixture('EditableRadioField', 'radio-field');
|
|
$this->assertEquals('UserFormsOptionSetField', $radio->getFormField()->getTemplate());
|
|
}
|
|
}
|