public function testDoesntPluralizeTwice()
 {
     $string = new Strings('person');
     $this->assertEquals('people', $string->plural());
     $this->assertEquals('people', $string->plural());
 }