Наследование: extends Cviebrock\EloquentSluggable\Tests\Models\Post, use trait Cviebrock\EloquentSluggable\SluggableScopeHelpers
 /**
  * Test that getSlugKeyName() works with the short configuration syntax.
  */
 public function testGetSlugKeyNameWithShortConfig()
 {
     $post = new PostShortConfigWithScopeHelpers();
     $this->assertEquals('slug_field', $post->getSlugKeyName());
 }