public function testPostIsHam()
 {
     $client = $this->getClient();
     $post = new Post();
     $post->setUrl('http://jrnv.nl/')->setUserIp('127.0.0.1')->setUserRole('administrator');
     $result = $client->check($post);
     $this->assertFalse($result, 'Post with role "administrator" should always be a ham, but was not.');
 }