Add Group, Limit, Map, Sort functions
Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
parent
1922f33c5c
commit
147b2d9017
11 changed files with 252 additions and 2 deletions
18
tests/Function/LimitFunctionTest.php
Normal file
18
tests/Function/LimitFunctionTest.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
use Arendsen\FluxQueryBuilder\Function\Limit;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class LimitFunctionTest extends TestCase {
|
||||
|
||||
public function testSimpleLimit()
|
||||
{
|
||||
$expression = new Limit(1);
|
||||
|
||||
$query = '|> limit(n:1) ';
|
||||
|
||||
$this->assertEquals($query, $expression->__toString());
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue