/** @test */
 public function it_returns_only_postponed_stories()
 {
     $this->createPost([$this->status_column => Status::POSTPONED], 5);
     $posts = Post::postponed()->get();
     $this->assertNotEmpty($posts);
     foreach ($posts as $post) {
         $this->assertEquals(Status::POSTPONED, $post->status);
     }
 }