Inheritance: extends Cviebrock\EloquentSluggable\Tests\Models\Post
 /**
  * Test basic slugging functionality using short configuration syntax.
  *
  * @test
  */
 public function testShortConfig()
 {
     $post = PostShortConfig::create(['title' => 'My First Post']);
     $this->assertEquals('my-first-post', $post->slug);
 }