wordpress-activitypub/tests/test-class-activitypub-hashtag.php
2019-08-18 22:08:58 +02:00

18 lines
417 B
PHP

<?php
class Test_Activitypub_Hashtag extends WP_UnitTestCase {
/**
* @dataProvider the_content_provider
*/
public function test_the_content( $content, $content_with_hashtag ) {
$content = \Activitypub\Hashtag::the_content( $content );
$this->assertEquals( $content_with_hashtag, $content );
}
public function the_content_provider() {
return [
[ 'test', 'test' ],
[ '#test', '#test' ],
];
}
}