[
[
'options' => [
'One' => '1',
'Two' => '2',
'Three' => '3'
]
],
null,
false,
<<
HTML
];
yield 'Radios with one selected' => [
[
'options' => [
'One' => '1',
'Two' => '2',
'Three' => '3'
]
],
'2',
false,
<<
HTML
];
yield 'Radios with descriptions' => [
[
'options' => [
'One' => '1',
'Two' => '2',
'Three' => '3'
],
'option-descriptions' => [
'1' => 'First',
'2' => 'Second',
'3' => 'Third'
]
],
'2',
false,
<<
First
HTML
];
}
}