/**
  * @group ticket_6505
  */
 public function test_numeric_named_inputs()
 {
     $form = new EE_Form_Section_Proper(array('html_id' => 'ee-available-payment-method-inputs', 'subsections' => array(0 => new EE_Radio_Button_Input(array('one' => 'One', 'two' => 'Two', 'three' => 'Three'), array('html_name' => 'selected_method_of_payment', 'html_class' => 'spco-payment-method', 'default' => 'three')))));
     $this->assertEquals(1, count($form->inputs()));
 }