public function test_form_tag()
 {
     $actual = FormTagHelper::form_tag('test');
     $matcher = array('tag' => 'form', 'attributes' => array('action' => 'test', 'method' => 'post'));
     $this->assertTag($matcher, $actual, 'Default attributes');
 }