Skip to content

Commit

Permalink
Breaking up long test
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 26, 2016
1 parent 071f239 commit 7c650f0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/TestCase/Database/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1541,7 +1541,16 @@ public function testSelectWhereNot()
->execute();
$this->assertCount(6, $result);
$result->closeCursor();
}

/**
* Tests that conditions can be nested with an unary operator using the array notation
* and the not() method
*
* @return void
*/
public function testSelectWhereNot2()
{
$query = new Query($this->connection);
$result = $query
->select(['id'])
Expand Down

0 comments on commit 7c650f0

Please sign in to comment.