A test model with no source field defined.
Inheritance: extends Cviebrock\EloquentSluggable\Tests\Models\Post
 /**
  * Test building a slug using the __toString method
  *
  * @test
  */
 public function testToStringMethod()
 {
     $post = PostWithNoSource::create(['title' => 'A Post Title']);
     $this->assertEquals('a-post-title', $post->slug);
 }