function testPostContentLength()
 {
     $crawl = "The evil leaders of Planet Spaceball having foolishly spuandered their precious atmosphere, have devised a secret plan to take every breath of air away from their peace-loving neighbor, Planet Druidia. Today is Princess Vespa's wedding day. Unbeknownest to the princess, but knowest to us, danger lurks in the stars above...";
     $pid = $this->factory->post->create(array('post_content' => $crawl));
     $post = new TimberPost($pid);
     $content = trim(strip_tags($post->get_content(6)));
     $this->assertEquals("The evil leaders of Planet Spaceball…", $content);
 }