Created
October 15, 2015 00:10
-
-
Save EspadaV8/73c9b311eee96b8e8a03 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Assert that a given where condition does not matches a soft deleted record | |
* | |
* @param string $table | |
* @param array $data | |
* @param string $connection | |
* @return $this | |
*/ | |
protected function seeIsNotSoftDeletedInDatabase($table, array $data, $connection = null) | |
{ | |
$database = $this->app->make('db'); | |
$connection = $connection ?: $database->getDefaultConnection(); | |
$count = $database->connection($connection) | |
->table($table) | |
->where($data) | |
->whereNull('deleted_at') | |
->count(); | |
$this->assertGreaterThan(0, $count, sprintf( | |
'Found unexpected records in database table [%s] that matched attributes [%s].', $table, json_encode($data) | |
)); | |
return $this; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Assert that a given where condition matches a soft deleted record | |
* | |
* @param string $table | |
* @param array $data | |
* @param string $connection | |
* @return $this | |
*/ | |
protected function seeIsSoftDeletedInDatabase($table, array $data, $connection = null) | |
{ | |
$database = $this->app->make('db'); | |
$connection = $connection ?: $database->getDefaultConnection(); | |
$count = $database->connection($connection) | |
->table($table) | |
->where($data) | |
->whereNotNull('deleted_at') | |
->count(); | |
$this->assertGreaterThan(0, $count, sprintf( | |
'Found unexpected records in database table [%s] that matched attributes [%s].', $table, json_encode($data) | |
)); | |
return $this; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very useful. Thank you.