Inheritance: extends Cviebrock\EloquentSluggable\Tests\Models\Post
 /**
  * Test building a slug from multiple attributes.
  *
  * @test
  */
 public function testMultipleSource()
 {
     $post = PostWithMultipleSources::create(['title' => 'A Post Title', 'subtitle' => 'A Subtitle']);
     $this->assertEquals('a-post-title-a-subtitle', $post->slug);
 }