/**
  * @covers Drafty_In_Here::get_posts
  */
 public function test_get_posts_when_no_draft_posts_exist_exception_thrown()
 {
     try {
         $this->instance->get_posts();
         $this->fail('Expected exception not thrown');
     } catch (\Exception $e) {
         $this->assertEquals($e->getMessage(), 'Drafty In Here can not send you an email, because you do not have any draft posts.');
     }
 }