/**
  * @test
  */
 public function it_can_render_field_with_html_value()
 {
     $this->field->setValue('<b>Body</b>');
     $str = $this->field->render();
     $expectedStr = '<textarea name="body">&lt;b&gt;Body&lt;/b&gt;</textarea>';
     $this->assertEquals($str, $expectedStr);
 }
 /**
  * @test
  */
 public function it_can_set_and_get_value()
 {
     $this->assertEquals('Test Title', $this->field->getValue());
     $this->field->setValue('foo');
     $this->assertEquals('foo', $this->field->getValue());
 }