diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-07-04 18:01:42 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-07-04 18:01:42 -0400 |
| commit | 32ddfb3fba9e0726623addd48ccd7af69e3b44f0 (patch) | |
| tree | 2137a21d4703820adc4c9589bb2140df9849755f /tests/units/LexerTest.php | |
| parent | 198f3eda90807c0295a013cd4ebdc3806545d608 (diff) | |
Allow search by task id
Diffstat (limited to 'tests/units/LexerTest.php')
| -rw-r--r-- | tests/units/LexerTest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/units/LexerTest.php b/tests/units/LexerTest.php index 0e3a61ae..bf0ffdd0 100644 --- a/tests/units/LexerTest.php +++ b/tests/units/LexerTest.php @@ -341,6 +341,11 @@ class LexerTest extends Base ); $this->assertEquals( + array('T_TITLE' => '#123'), + $lexer->map($lexer->tokenize('#123')) + ); + + $this->assertEquals( array(), $lexer->map($lexer->tokenize('color:assignee:')) ); |
