public function test_underscore()
 {
     $this->assertEquals('hello_world!', stack_utils::underscore('hello world!'));
     $this->assertEquals('he_he_hello_world_', stack_utils::underscore('he-he-hello world!', array('!')));
 }