diff options
author | Olivier Maridat <olivier.maridat@trialog.com> | 2015-11-26 15:33:44 +0100 |
---|---|---|
committer | Olivier Maridat <olivier.maridat@trialog.com> | 2015-11-26 15:33:44 +0100 |
commit | f837e70a2d74eb37c4c5de7e4f54c8bf8ec78db7 (patch) | |
tree | c146511e70537f7224835931ef1d3b0b2f516d3e /tests/units/Core/LexerTest.php | |
parent | e582d4047b061f0c17e6366fed2bf1cabd624c10 (diff) |
Add filter by task link
Diffstat (limited to 'tests/units/Core/LexerTest.php')
-rw-r--r-- | tests/units/Core/LexerTest.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/units/Core/LexerTest.php b/tests/units/Core/LexerTest.php index 9e14ff6b..55370aab 100644 --- a/tests/units/Core/LexerTest.php +++ b/tests/units/Core/LexerTest.php @@ -116,6 +116,31 @@ class LexerTest extends Base ); } + public function testLinkQuery() + { + $lexer = new Lexer; + + $this->assertEquals( + array(array('match' => 'link:', 'token' => 'T_LINK'), array('match' => 'is a milestone of', 'token' => 'T_STRING')), + $lexer->tokenize('link:"is a milestone of"') + ); + + $this->assertEquals( + array('T_LINK' => array('is a milestone of')), + $lexer->map($lexer->tokenize('link:"is a milestone of"')) + ); + + $this->assertEquals( + array('T_LINK' => array('is a milestone of', 'fixes')), + $lexer->map($lexer->tokenize('link:"is a milestone of" link:fixes')) + ); + + $this->assertEquals( + array(), + $lexer->map($lexer->tokenize('link: ')) + ); + } + public function testColumnQuery() { $lexer = new Lexer; |