From: Brenda Wallace Date: Mon, 24 Aug 2009 22:33:16 +0000 (+1200) Subject: beginning of hashtag tests X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3ff67b3bc185be255d0b54f7f9af7c9578b4330b;p=quix0rs-gnu-social.git beginning of hashtag tests --- diff --git a/tests/HashTagDetectionTest.php b/tests/HashTagDetectionTest.php new file mode 100644 index 0000000000..71137b0b54 --- /dev/null +++ b/tests/HashTagDetectionTest.php @@ -0,0 +1,35 @@ +assertEquals($expected, $rendered); + } + + static public function provider() + { + return array( + array('hello', + 'hello'), + array('#hello', + 'hello'), + ); + } +} +