public function testIsInvalidWithoutUniqueEmail()
 {
     Factory::create('author', ['name' => 'Joy', 'email' => '*****@*****.**']);
     $author = Factory::author(['name' => 'Frank', 'email' => '*****@*****.**']);
     $this->assertNotValid($author);
 }