public function test_generates_a_text_field_with_abbreviated_options()
 {
     // Having
     Field::setAbbreviations(['ph' => 'placeholder']);
     // Expect
     $this->assertTemplate('fields/abbreviated_options', Field::text('name', 'value', ['ph' => 'Write your name']));
 }