public function testStringsCanBeSlugged()
 {
     $this->assertEquals('my-new-post', Strings::slugify('My_nEw\\\\/  @ post!!!'));
     $this->assertEquals('my_new_post', Strings::slugify('My nEw post!!!', '_'));
 }